Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ipazc/mldatahub
Machine Learning data HUB for storing datasets.
https://github.com/ipazc/mldatahub
backend dataset flask flask-restful linux machine-learning ming mongodb python3
Last synced: about 4 hours ago
JSON representation
Machine Learning data HUB for storing datasets.
- Host: GitHub
- URL: https://github.com/ipazc/mldatahub
- Owner: ipazc
- License: gpl-3.0
- Created: 2017-09-15T12:04:14.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-12-04T11:22:30.000Z (about 7 years ago)
- Last Synced: 2024-12-19T07:41:43.865Z (about 2 months ago)
- Topics: backend, dataset, flask, flask-restful, linux, machine-learning, ming, mongodb, python3
- Language: Python
- Size: 217 KB
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 6
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
- Authors: AUTHORS
Awesome Lists containing this project
README
===============
mldatahub 0.0.1
===============`MlDataHub` is a dataset storage hub backend. It is intended to be a standard tool for hosting and managing Machine Learning datasets.
.. image:: https://travis-ci.org/ipazc/mldatahub.svg?branch=master
:target: https://travis-ci.org/ipazc/mldatahub.. image:: https://coveralls.io/repos/github/ipazc/mldatahub/badge.svg?branch=master
:target: https://coveralls.io/github/ipazc/mldatahub?branch=masterThis is still a work in progress. It is expected to achieve a Proof Of Concept during December 2017.
=====
NOTES
=====On mongo, it is required to set some indexes:
.. code:: javascript
db.element.createIndex({'addition_date': 1})
db.element.createIndex({'dataset_id': 1})
db.element.createIndex({'file_ref_id': 1})
db.element.createIndex({'_previous_id': 1})
db.file.createIndex({'sha256': 1})
db.restapi.createIndex({'ip': 1})=======
LICENSE
=======It is released under the **GNU GPL v3 or greater** license.