Skip to content

JanSkn/machine-learning-library

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

171 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 


Logo

PyLearn

A simple library for machine learning topics.
Explore the docs »

Report Bug · Request Feature


PyPI version PyPI - Downloads Pepy Total Downloads
Test Coverage Coverage Status


About The Project

PyLearn implements machine learning features from scratch. It supports basic features of supervised and unsupervised learning.

You can

  • create neural networks with dense layers, different activation functions and loss functions,
  • cluster your data without previously known classes,
  • classify data
  • evaluate models
  • and more

Read the Documentation for more information.

(back to top)

Installation

Install PyLearn using pip:

pip install pylearn-ml

(back to top)

Built With

The source code was built with Python, mainly using NumPy and Pandas.

(back to top)

Requirements

Requirements can be found under docs/requirements.txt.

(back to top)

Usage

Import the library:

import pylearn as pl

Most models have a fit and a predict function.

Just create a model, train it and use it for predictions.

model = pl.Model()

model.fit(x_train, y_train)
...
model.predict(y_test)

For details of usage, have a look at the examples folder.
Or read the Documentation

(back to top)

Contributing

If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement".

  1. Fork the Project
  2. Create your Feature Branch (git checkout -b feature/AmazingFeature)
  3. Commit your Changes (git commit -m 'Add some AmazingFeature')
  4. Push to the Branch (git push origin feature/AmazingFeature)
  5. Open a Pull Request

Please follow the Contributing guidelines.

(back to top)

License

Distributed under the MIT License. See LICENSE for more information.

(back to top)

About

Machine learning features from scratch.

Topics

Resources

License

Code of conduct

Contributing

Stars

Watchers

Forks

Packages

 
 
 

Contributors

Languages