Metadata-Version: 1.1
Name: ml-dl-models
Version: 1.0.0
Summary: Module to access ml dl models.
Home-page: https://github.com/laxmanmaharjan/ml-dl-models
Author: Laxman Maharjan
Author-email: lxmnmrzn17@gmail.com
License: MIT
Download-URL: https://github.com/laxmanmaharjan/ml-dl-models/archive/v_01.tar.gz
Description: # ML-DL-Models
        ---
        ML-DL-Models is library to integrate various pre-trained Machine Learning and Deep Learning to your project through ml-dl-models api [link](https://ml-dl-models.herokuapp.com/).
        
        
        ## Usage
        ---
        In the following paragraphs, I am going to describe how you can get and use ml-dl-models for your projects.
        
        
        ### Getting it
        To download ml-dl-models, either fork this github repo or simply use Pypi via pip.
        
        ```sh
        $ pip install ml-dl-models
        ```
        
        ### Using it
        ML-DL-Models was programmed with ease-of-use in mind. First, import models from it.
        
        ```python
        from ml-dl-models import MelodyGenerator
        ```
        
        Now you are ready to create an Melody from a MelodyGenerator model.
        
        ```python
        mg = MelodyGenerator()
        data = {'keys':'c d e', 'default':True}
        path = '/home/LaxmanMaharjan/melody.mp3' # default value is 'melody.mp3' in same directory.
        mg.generate_melody(data = data, path = path)
        ```
        You can also get the cached notes(notes that are already fetched to model) from Melody Generator.
        
        ```python
        mg = MelodyGenerator()
        print(mg.get_cached_notes)
        ```
        __Learn more about Data Representation [link](https://ml-dl-models.herokuapp.com/documentation)__
        
Keywords: ml,dl,ml_dl_models,models
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
