All Projects → IBM → mlapp

IBM / mlapp

Licence: Apache-2.0 license
MLApp is a Python library for building scalable data science solutions that meet modern software engineering standards.

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to mlapp

DevSoc21
Official website for DEVSOC 21, our annual flagship hackathon.
Stars: ✭ 15 (-64.29%)
Mutual labels:  ml
meerkat
Flexible data structures for complex machine learning datasets.
Stars: ✭ 115 (+173.81%)
Mutual labels:  ml
cli
Polyaxon Core Client & CLI to streamline MLOps
Stars: ✭ 18 (-57.14%)
Mutual labels:  ml
card-scanner-flutter
A flutter package for Fast, Accurate and Secure Credit card & Debit card scanning
Stars: ✭ 82 (+95.24%)
Mutual labels:  ml
Hacktoberfest-2k19
Just add pull requests to this repo and stand a chance to win a limited edition Hacktoberfest T-shirt.
Stars: ✭ 33 (-21.43%)
Mutual labels:  ml
r2inference
RidgeRun Inference Framework
Stars: ✭ 22 (-47.62%)
Mutual labels:  ml
community
README for Rekcurd projects
Stars: ✭ 16 (-61.9%)
Mutual labels:  ml
neptune-client
📒 Experiment tracking tool and model registry
Stars: ✭ 348 (+728.57%)
Mutual labels:  ml
predict Lottery ticket
双色球+大乐透彩票AI预测
Stars: ✭ 341 (+711.9%)
Mutual labels:  ml
FlutterIOT
Visit our website for more Mobile and Web applications
Stars: ✭ 66 (+57.14%)
Mutual labels:  ml
lm-scorer
📃Language Model based sentences scoring library
Stars: ✭ 264 (+528.57%)
Mutual labels:  ml
dask-sql
Distributed SQL Engine in Python using Dask
Stars: ✭ 271 (+545.24%)
Mutual labels:  ml
Learning-Resources
This repository contains curated, useful resources drafted by DSC Domain Leads.
Stars: ✭ 21 (-50%)
Mutual labels:  ml
CustomVisionMicrosoftToCoreMLDemoApp
This app recognises 3 hand signs - fist, high five and victory hand [ rock, paper, scissors basically :) ] with live feed camera. It uses a HandSigns.mlmodel which has been trained using Custom Vision from Microsoft.
Stars: ✭ 25 (-40.48%)
Mutual labels:  ml
GatedPixelCNNPyTorch
PyTorch implementation of "Conditional Image Generation with PixelCNN Decoders" by van den Oord et al. 2016
Stars: ✭ 68 (+61.9%)
Mutual labels:  ml
leetspeek
Open and collaborative content from leet hackers!
Stars: ✭ 11 (-73.81%)
Mutual labels:  ml
ml-graphlab-boilerplate
Machine learning boiler plate to get you started in minutes (graphlab + sframe + jupyter + docker)
Stars: ✭ 17 (-59.52%)
Mutual labels:  ml
deep-significance
Enabling easy statistical significance testing for deep neural networks.
Stars: ✭ 266 (+533.33%)
Mutual labels:  ml
neural inverse knitting
Code for Neural Inverse Knitting: From Images to Manufacturing Instructions
Stars: ✭ 30 (-28.57%)
Mutual labels:  ml
DeepBump
Normal & height maps generation from single pictures
Stars: ✭ 185 (+340.48%)
Mutual labels:  ml

MLApp · pip version Build Status License

MLApp is a Python library for building scalable data science solutions that meet modern software engineering standards.

MLApp was built and hardened in an enterprise context, to solve scalability issues for mid-size to Fortune 50 companies. It is applicable to a variety of data science use cases including machine learning, deep learning, NLP and optimization.

  • Embedded MLOps: Standardizes the way models and their metadatas are registered, stored and deployed.
  • Project scaffolding: Generates an opinionated project file structure that enforces modern engineering standards and improves readability and documentation across solutions.
  • Boilerplates: Includes a library of pre-built model templates that can be easily customized to accelerate development of common use cases.
  • Utilities: Includes an extendable set of utilities that increase developer productivity - including functions for selecting features and optimizing hyperparameters.
  • Connectors: Allows developers to easily integrate their projects with common data and analytics services.
  • Deployment integration: Applications built using MLApp can easily be deployed on common open and proprietary platforms, including Kubernetes and Azure Machine Learning.

Getting started

Install MLApp via pip:

pip install mlapp

Navigate to an empty project folder and generate the project scaffold:

mlapp init

Install a working example using boilerplates:

mlapp boilerplates install basic_regression

Update the run.py file in your project directory to point to the Basic Regression asset that you just installed:

configs = [
    {
        'config_path': "assets/basic_regression/configs/basic_regression_train_config.py",
        'asset_name': "basic_regression",
        'config_name': "basic_regression_config"
    }
]

Execute the run.py script:

python run.py

Congrats! You've trained your first model in MLApp. Take a look at the output directory to see the results.

Next steps

A great place to start is the crash course.

You should also check out the full project documentation.

Contributing

We welcome contributions from the community. Please refer to CONTRIBUTING for more information.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].