https://github.com/engapa/modeldb-basic
Testing modeldb project of MIT
https://github.com/engapa/modeldb-basic
machine-learning model modeldb modelrepository
Last synced: 11 months ago
JSON representation
Testing modeldb project of MIT
- Host: GitHub
- URL: https://github.com/engapa/modeldb-basic
- Owner: engapa
- License: mit
- Created: 2017-10-30T13:40:32.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2021-03-25T21:41:49.000Z (about 5 years ago)
- Last Synced: 2024-10-31T22:36:18.126Z (over 1 year ago)
- Topics: machine-learning, model, modeldb, modelrepository
- Language: Python
- Size: 8.18 MB
- Stars: 6
- Watchers: 1
- Forks: 3
- Open Issues: 2
-
Metadata Files:
- Readme: README.rst
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
=============
modeldb-basic
=============
.. image:: https://img.shields.io/travis/engapa/modeldb-basic/master.svg?style=flat-square
:target: http://travis-ci.org/engapa/modeldb-basic
:alt: Build Status
.. image:: https://img.shields.io/pypi/v/modeldb-basic.svg?style=flat-square
:target: https://pypi.org/project/modeldb-basic
:alt: Version
.. image:: https://img.shields.io/pypi/pyversions/modeldb-basic.svg?style=flat-square
:target: https://pypi.org/project/modeldb-basic
:alt: Python versions
A basic python client for working with `ModelDB machine learning management system `_.
Visit the original project at : https://github.com/mitdbg/modeldb
This project goal is to try isolate a basic client to operate within model database, where main features will be:
- Sync projects/models from file (json, yaml)
- Sync projects/models by using basic mechanism (without sklearn dependencies)
- Python 2.7 and 3.{5,6,7} compatibility.
Quick start
===========
Install
-------
Remotely
""""""""
The most widely known way to install a python package is by **pip** command.
The python package is available at [pypi repository](https://pypi.org/project/modeldb-basic/) (legacy repo [here](https://pypi.python.org/pypi/modeldb-basic)).
Just type this ``pip`` command to install it from pypi package repository::
pip install modeldb-basic
Alternatively it's possible to install it by using any of these URLs:
* ``pip install git+https://github.com/engapa/modeldb-basic[@]#egg=modeldb-basic``
* ``pip install ``
Where [@] is an optional reference to a git reference (i.e: @master, @v0.1.6) and
is the URL of one released version at https://github.com/engapa/modeldb-basic/releases
Locally
"""""""
Previously downloaded in your host, somebody may install the package by typing::
pip install .
or::
python setup.py install