Build time saving ML pipelines with built in autosave and reload
Project description
FastPipeline
Persistent, easy to use, fast to code
Documentation: https://shashank-yadav.github.io/fastpipeline/
Source Code: https://github.com/shashank-yadav/fastpipeline
FastPipeline is a framework for creating general purpose pipeline in your ML projects. It helps in keeping track of your experiments by automatically storing all the intermediate data and source code.
The key features are:
- Persistence: Automatically stores all the intermediate data and variables during the run.
- Autoreload: Detects if something has been computed before and reloads it instead of a do-over.
- Accessible Intermediate Data: The intermediate data is stored as pickle and json files, can be easily accessed and analyzed.
- General Purpose: Unlike sklearn pipelines you don't need to format your data into the required X, y format.
- Intuitive: Great editor support. Completion everywhere. Less time debugging.
- Easy: Designed to be easy to use and learn. Less time reading docs.
Installation
$ pip install fastpipeline
---> 100%
Example
Train a classifier over the (in)famous MNIST dataset
- Create a file
mnist_pipeline.py
- Make necessary imports and create a class
DataLoader
that extends theBaseNode
class from the fastpipeline package. This is something we'll refer to as aNode
# Import datasets, classifiers and performance metrics
from sklearn import datasets, svm, metrics
from sklearn.model_selection import train_test_split
import numpy as np
# Import pipeline and node constructs
from fastpipeline.base_node import BaseNode
from fastpipeline.pipeline import Pipeline
# Node for loading data
class DataLoader(BaseNode):
def __init__(self):
super().__init__()
def run(self, input = {}):
# The digits dataset
digits = datasets.load_digits()
# To apply a classifier on this data, we need to flatten the image, to
# turn the data in a (samples, feature) matrix:
n_samples = len(digits.images)
data = digits.images.reshape((n_samples, -1))
return {
'data': data,
'target': digits.target
}
- Create another
Node
whose input is output ofDataLoader
and that trains an SVM classifier
# Node for training the classifier
class SVMClassifier(BaseNode):
def __init__(self, config):
super().__init__(config)
gamma = config['gamma']
# Create a classifier: a support vector classifier
self.classifier = svm.SVC(gamma=gamma)
def run(self, input):
data = input['data']
target = input['target']
# Split data into train and test subsets
X_train, X_test, y_train, y_test = train_test_split(
data, target, test_size=0.5, shuffle=False)
# We learn the digits on the first half of the digits
self.classifier.fit(X_train, y_train)
# Now predict the value of the digit on the second half:
y_pred = self.classifier.predict(X_test)
return {
'acc': np.mean(y_test == y_pred),
'y_test': y_test,
'y_pred': y_pred
}
- Now let's instantiate the nodes and create our pipeline
if __name__ == "__main__":
# Initialize the nodes
dl_node = DataLoader()
svm_node = SVMClassifier({'gamma': 0.01})
# Create the pipeline
pipeline = Pipeline('mnist', [dl_node, svm_node])
# Run pipeline and see results
result = pipeline.run(input={})
print('Accuracy: %s'%result['acc'])
- Run the pipeline using
$ python mnist.py
. You should see somthing like:
As expected it says that this is the first run and hence for both nodes outputs are being computed by calling their run
method. The log here shows where the data is being stored
- Try running it again with the same command:
$ python mnist.py
. This time you should see something different:
Since all the intermediate outputs are already computed, the pipeline just reloads the data at each step instead of re-computing
- Let's make a change to the value of config inside
__main__
:
# svm_node = SVMClassifier({'gamma': 0.01})
svm_node = SVMClassifier({'gamma': 0.05})
- Run the pipeline again. You'll see something like:
This time it used the result from first node as-is and recomputed for second node, since we made a change to the config.
If you make any changes to the class SVMClassifier
same thing will happen again.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file fastpipeline-0.0.1.tar.gz
.
File metadata
- Download URL: fastpipeline-0.0.1.tar.gz
- Upload date:
- Size: 9.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e303c32aca57f14b57c1646dc4a326b1857eb34a23097aa30aced04090f631be |
|
MD5 | 144bbcfc795193e0bdf6e0f9c9ab8112 |
|
BLAKE2b-256 | bf89e64c72cffd7c0496048ec6b357065e7830eea6f2a69ed6b08ecad17a4864 |
File details
Details for the file fastpipeline-0.0.1-py3-none-any.whl
.
File metadata
- Download URL: fastpipeline-0.0.1-py3-none-any.whl
- Upload date:
- Size: 11.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 357a1a0fdf8af59595cc98ec4b33fe38c0d1001b0777efdc9159f650cafb3957 |
|
MD5 | b88c81824b996668b7d75aa70e6af1ce |
|
BLAKE2b-256 | 2768048b47583438b230d4d747346bf80331e549f10881fccacb4d017502b583 |