Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/nishant2018/lazy-learner-code

A lazy learner in machine learning defers processing training data until prediction time. It stores instances and labels, avoiding upfront learning. Examples include KNN. They're efficient for changing data or limited resources but may be slower for predictions.
https://github.com/nishant2018/lazy-learner-code

Last synced: 3 days ago
JSON representation

A lazy learner in machine learning defers processing training data until prediction time. It stores instances and labels, avoiding upfront learning. Examples include KNN. They're efficient for changing data or limited resources but may be slower for predictions.

Awesome Lists containing this project

README

        

# lazy-learner-Code
A lazy learner in machine learning defers processing training data until prediction time. It stores instances and labels, avoiding upfront learning. Examples include KNN. They're efficient for changing data or limited resources but may be slower for predictions.