Machine_learning_cpp

Alternatives To Machine_learning_cpp
Project NameStarsDownloadsRepos Using ThisPackages Using ThisMost Recent CommitTotal ReleasesLatest ReleaseOpen IssuesLicenseLanguage
Cs Video Courses55,887
13 days ago16
List of Computer Science courses with video lectures.
C Plus Plus24,524
5 hours ago32mitC++
Collection of various algorithms in mathematics, machine learning, computer science and physics implemented in C++ for educational purposes.
Homemade Machine Learning21,220
25 days ago22mitJupyter Notebook
🤖 Python examples of popular machine learning algorithms with interactive Jupyter demos and math being explained
Wavefunctioncollapse20,815
3 months ago2otherC#
Bitmap & tilemap generation from a single example with the help of ideas from quantum mechanics
C16,283
a day ago19gpl-3.0C
Collection of various algorithms in mathematics, machine learning, computer science, physics, etc implemented in C for educational purposes.
Nni12,9238226 hours ago51June 22, 2022281mitPython
An open source AutoML toolkit for automate machine learning lifecycle, including feature engineering, neural architecture search, model compression and hyper-parameter tuning.
Machine Learning Tutorials12,876
5 months ago33cc0-1.0
machine learning and deep learning tutorials, articles and other resources
Halfrost Field11,971
2 months ago6cc-by-sa-4.0Go
✍🏻 这里是写博客的地方 —— Halfrost-Field 冰霜之地
Numerical Linear Algebra9,325
2 months ago11Jupyter Notebook
Free online textbook of Jupyter notebooks for fast.ai Computational Linear Algebra course
Mlalgorithms9,318
2 months ago10mitPython
Minimal and clean examples of machine learning algorithms implementations
Alternatives To Machine_learning_cpp
Select To Compare


Alternative Project Comparisons
Readme

Machine Learning with C++ Tutorial

In this repository, you can find all the code from my series of tutorials of Machine Learning with C++: YouTube Playlist.

Usage

Fork and clone/download the repository.

Linear Regression

To compile simply run the code:

g++ -std=c++11 LinearRegression/LinearRegression.cpp ETL/ETL.cpp main/LinearRegression.cpp -o linregr

To run and test:

./linregr datasets/winedata.csv ","

Logistic Regression

To compile simply run the code:

g++ -std=c++11 LogisticRegression/LogisticRegression.cpp ETL/ETL.cpp main/LogisticRegression.cpp -o logregr

To run and test:

./logregr datasets/adult_data.csv ","

Popular Machine Learning Projects
Popular Algorithms Projects
Popular Machine Learning Categories
Related Searches

Get A Weekly Email With Trending Projects For These Categories
No Spam. Unsubscribe easily at any time.
C Plus Plus
Jupyter Notebook
Machine Learning
Algorithms
Tutorials
Machine Learning Algorithms
Linear Regression
Logistic Regression