Skip to main content

A General Purpose Machine Learning Library for Python

Project description

PyDojoML

A General Purpose Machine Learning Library for Python

A quick taste of PyDojoML

How to install

You can easily install it with pip.
Copy-paste this in your terminal and run it.

pip install pydojoml

Good job, now it's time we rock-and-roll!

Simple Linear Regression example:

import numpy as np
from dojo.linear import LinearRegression

# Building the model.
linear_reg = LinearRegression()

# Let's creat some data to fit the model to.
X = np.random.randn(100_000, 100)
y = X @ np.random.rand(100)

# Fitting the model is as easy as a call of a method.
linear_reg.fit(X, y)

# Now lets predict.
prediction = linear_reg.predict(X[:20, :])

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

PyDojoML-0.0.8.macosx-10.13-x86_64.tar.gz (24.2 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page