Coder Social home page Coder Social logo

ditat_ml's Introduction

ditat_ml

ditat.io framework for deployment of machine learning models.

For further information visit ditat.io

Installation (and updates)

pip install git+https://github.com/ditat-llc/ditat_ml.git --upgrade

Using ssh

pip install git+ssh://[email protected]/ditat-llc/ditat_ml.git --upgrade

The other option is to clone the repo and install it locally.

pip install -e ./ditat_ml

Usage

This framework gives you the flexibility to operate with high-level api (Pipeline) and also with its low-level functions, among others.

High-level usage

Train and Test

from ditat_ml import Pipeline

p = Pipeline()
p.load_data(path='dataset.csv')
p.load_X_y(X_columns, y_columns)
p.preprocessing(**mappings ) # Check documentation for more details.
p.scale()

p.model = YOUR_MODEL_CHOICE

p.train()

Deploy

One you are satisfied with your model's performance, you can deploy it.

p.deploy(name='my_model')

Predict

from ditat_ml import Pipeline

p = Pipeline()
predictions = p.predict(path='dataset.csv', model_name='my_model')

Low-level usage

You can also use its low-level functions to give you more flexibility.

from ditat_ml import utility_functions

ditat_ml's People

Contributors

tomasemilio avatar ded-ditat avatar

Stargazers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.