MLPP icon indicating copy to clipboard operation
MLPP copied to clipboard

A library created to revitalize C++ as a machine learning front end. Per aspera ad astra.

Results 7 MLPP issues
Sort by recently updated
recently updated
newest added

Great work! Very interesting! In the README, you say that MLPP serves to revitalize C++ as a machine learning front-end. How does MLPP separate itself from the [Pytorch C++](https://github.com/prabhuomkar/pytorch-cpp) API?...

Impressive work! You should swap the two inner loops here: https://github.com/novak-99/MLPP/blob/2a21d259997e44d80552b5c5842f05d4eae1d62a/MLPP/LinAlg/LinAlg.cpp#L80-L86 That is: ```c++ for(int i = 0; i < A.size(); i++){ for(int k = 0; k < B.size(); k++){...

Hi Marc, I pulled your project into my CLion IDE (IntelliJ), looks very interesting! great work there.. are you really 16 years old!!! I have introduced a cmake file that...

For easier compilation and development on Windows and MacOS

your implementation of ```cpp std::vector kNN::nearestNeighbors(std::vector x){ LinAlg alg; // The nearest neighbors std::vector knn; std::vector inputUseSet = inputSet; //Perfom this loop unless and until all k nearest neighbors are...

I was sifting through the codebase, as I am building a similar project from scratch and this project gave me a lot of pointers and inspiration, and noticed several ways...

What is the status of the documentation you mentioned? Thx!