Skip to content

Lightwood is Legos for Machine Learning.

License

Notifications You must be signed in to change notification settings

ritwik12/lightwood

 
 

Repository files navigation

Lightwood

Build Status PyPI version PyPI - Downloads

Lightwood is like Legos for Machine Learning, with two objectives:

  • Make it so simple that you can build predictive models with a line of code.
  • Make it so flexible that you can change and customize everything.

Lightwood runs on Pytorch and gives you full control of what you can do.

Documentation

Learn more from the Lightwood's docs.

Quick start

pip3 install lightwood

Learn

You can train a Predictor as follows:

from lightwood import Predictor
sensor3_predictor = Predictor(output=['sensor3']).learn(from_data=pandas.read_csv('sensor_data.csv'))

Predict

You can now given new readings from sensor1 and sensor2 predict what sensor3 will be.

prediction = sensor3_predictor.predict(when={'sensor1':1, 'sensor2':-1})

About

Lightwood is Legos for Machine Learning.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 99.7%
  • Shell 0.3%