Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Cs Video Courses | 56,273 | 5 days ago | 17 | |||||||
List of Computer Science courses with video lectures. | ||||||||||
C Plus Plus | 24,588 | a day ago | 32 | mit | C++ | |||||
Collection of various algorithms in mathematics, machine learning, computer science and physics implemented in C++ for educational purposes. | ||||||||||
Homemade Machine Learning | 21,220 | a month ago | 22 | mit | Jupyter Notebook | |||||
🤖 Python examples of popular machine learning algorithms with interactive Jupyter demos and math being explained | ||||||||||
Wavefunctioncollapse | 20,815 | 3 months ago | 2 | other | C# | |||||
Bitmap & tilemap generation from a single example with the help of ideas from quantum mechanics | ||||||||||
C | 16,312 | a day ago | 18 | gpl-3.0 | C | |||||
Collection of various algorithms in mathematics, machine learning, computer science, physics, etc implemented in C for educational purposes. | ||||||||||
Recommenders | 15,799 | 2 | 2 hours ago | 11 | April 01, 2022 | 165 | mit | Python | ||
Best Practices on Recommendation Systems | ||||||||||
Nni | 12,967 | 8 | 22 | 2 hours ago | 51 | June 22, 2022 | 286 | mit | Python | |
An open source AutoML toolkit for automate machine learning lifecycle, including feature engineering, neural architecture search, model compression and hyper-parameter tuning. | ||||||||||
Machine Learning Tutorials | 12,876 | 5 months ago | 33 | cc0-1.0 | ||||||
machine learning and deep learning tutorials, articles and other resources | ||||||||||
Halfrost Field | 11,971 | 2 months ago | 6 | cc-by-sa-4.0 | Go | |||||
✍🏻 这里是写博客的地方 —— Halfrost-Field 冰霜之地 | ||||||||||
Numerical Linear Algebra | 9,325 | 2 months ago | 11 | Jupyter Notebook | ||||||
Free online textbook of Jupyter notebooks for fast.ai Computational Linear Algebra course |
Simple machine learning library /
$ pip install FukuML
>>> import numpy as np
# we need numpy as a base libray
>>> import FukuML.PLA as pla
# import FukuML.PLA to do Perceptron Learning
>>> your_input_data_file = '/path/to/your/data/file'
# assign your input data file, please check the data format: https://github.com/fukuball/fuku-ml/blob/master/FukuML/dataset/pla_binary_train.dat
>>> pla_bc = pla.BinaryClassifier()
# new a PLA binary classifier
>>> pla_bc.load_train_data(your_input_data_file)
# load train data
>>> pla_bc.set_param()
# set parameter
>>> pla_bc.init_W()
# init the W
>>> W = pla_bc.train()
# train by Perceptron Learning Algorithm to find best W
>>> test_data = 'Each feature of data x separated with spaces. And the ground truth y put in the end of line separated by a space'
# assign test data, format like this '0.97681 0.10723 0.64385 ........ 0.29556 1'
>>> prediction = pla_bc.prediction(test_data)
# prediction by trained W
>>> print prediction['input_data_x']
# print test data x
>>> print prediction['input_data_y']
# print test data y
>>> print prediction['prediction']
# print the prediction, will find out prediction is the same as pla_bc.test_data_y
For detail, please check https://github.com/fukuball/fuku-ml/blob/master/doc/sample_code.rst
python test_fuku_ml.py
pep8 FukuML/*.py --ignore=E501
If you find fuku-ml useful, please consider a donation. Thank you!
The MIT License (MIT)
Copyright (c) 2016 fukuball
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.