Skip to main content

Python algorithms used to perform machine learning.

Project description

TearDrop

TearDrop project contains many useful various machine learning algorithms and models. You can find there anything from Linear regression, KNN, SVMs up to deep learning and LSTMs.

Installation

Installing from pypi using pip:

pip install teardrop
# or you can do this
python3 -m pip install teardrop

You can also install it directly from our repository:

pip install git+https://gitlab.com/dec0ded/teardrop

Example code

Using TearDrop you can easily create many various neural nets, e.g. Dense neural network.

from teardrop.layers.core import Dense
from teardrop.neural_models import Sequential

net = Sequential(loss='mse', optimizer='sgd')
net.add(Dense(10, activation='relu', input_shape=5))
net.add(Dense(1, activation='sigmoid'))

And voila! We've created a basic network which is able to take inputs with shape (N, 5) and returns output with shape (N, 1).

For more examples and better description, check our documentation.

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

TearDrop-0.0.2.dev2.tar.gz (14.1 kB view hashes)

Uploaded Source

Built Distribution

TearDrop-0.0.2.dev2-py3-none-any.whl (19.0 kB view hashes)

Uploaded Python 3

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