Open poyea opened 2 years ago
I am currently trying to implement it using SciPy (for minimization and maximization). Will keep you updated with the advancement.
Maybe the following files should be added to the migration list
machine_learning/gaussian_naive_bayes.py
machine_learning/gradient_boosting_regressor.py
machine_learning/multilayer_perceptron_classifier.py
machine_learning/polymonial_regression.py
and has typos in name and file (polymonial -> polynomial)machine_learning/random_forest_classifier.py
machine_learning/random_forest_regressor.py
check the typos and try using with different libraries.
there are lots of pre define dictionary available in the python so we can use some other sort of libraries.
@Sharukpy @shrutiiivij I don't understand your point... Changing up libraries doesn't make those files any less "how-to" examples. There are no algorithms being implemented in the files, rather using well-known libraries to do the job. Correct me if I'm wrong, but this repository is about re-implementing algorithms in Python, so that people can actually understand what is happening under the hood (to some extent).
fuzzy_logic/fuzzy_operations.py
should also be added to the migration list. The file has no algorithm functions (or any functions for that matter) and all the fuzzy logic operations are simply performed using functions from the skfuzzy
module.
@cclauss We should reopen this issue since there are still quite a few how-tos, especially in machine_learning/
We can add computer_vision/cnn_classification.py
and machine_learning/lstm/lstm_prediction.py
to the list as well
@cclauss Could we reopen this issue since most of the "algorithms" listed here are still how-tos?
This isn't a "how-to", but maths/add.py should definitely be considered as "too trivial":
Given that the repo already has more detailed implementations of addition, it should be fine to just delete this one.
Hi Guys, need some help here, So I was going through the issues and some of them are open and some are closed, so It will be great if one of you can point out any algorithms for implementation. I am looking to implement some and your suggestions are welcomed, Please let me know if any algorithms are available in Machine learning Domain,
I was planning on following along the forecasting section using LSTM, and as I was reading through the issues, I understood that it was just an "how- to" on how to implement the concept of forecasting using multiple machine learning algorithms. So If I implemented what I was planning to then it will also End up as an "how -to".
Thank you, Eager for your responces
Please remember that on October 1st we had zero open PR and today we have 180 plus. We have been working as volunteers daily to review and merge quality contributions. We have carefully written our definition of an algorithm in CONTRIBUTING.md. Nevertheless, it is a bit subjective to determine what is a how-to-use and what is an algorithm so our decision-making might not please everyone. If a contribution leans too hard on a third-party module, it may not deliver enough innovation to merit our visitors' study.
In our Contributing Guidelines:
And after some investigation like #6201, one can find some implementations that resemble online tutorials or are too trivial. In #6201,
machine_learning/support_vector_machines.py
is removed. It should be migrated to a much detailed implementation of SVM instead of importing packages.Migration list:
machine_learning/support_vector_machines.py