Metadata-Version: 2.1
Name: pianogen
Version: 0.0.6
Summary: Pianoroll-generator A package to generate pianoroll (NPZ) datasets
Home-page: https://github.com/cliffordkleinsr/pianoroll-generator
Author: Clifford Njoroge
Author-email: cnjoroge@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE.txt
Requires-Dist: pypianoroll==0.5.3
Requires-Dist: numpy

# pianoroll-generator
Pianoroll-generator A package to generate pianoroll (NPZ) datasets

### Getting Started
------------------------
1. Building from the source 
   - First clone the repository to your local directory with `git`
   - Open your local Terminal/Command Shell and run the following commands:
   
      ```shell
      cd pianoroll-generator # change directory to the cloned repository
      #use any of the following some will work dependent on your operating system
      #try
      python3 setup.py develop # works on both osx and linux
      #or
      pip install . 
      ```
    
    ### Usage
    - TO GENERATE A DENSE NPZ DATASET, first Download some midi files and place them in the ***midis*** directory 
    > ***Note*** the midis is an arbitrary dir, it can be named A anything
    - On either your python terminal or idle shell run the following codes:
    1. To create a list of files with common tracks
 
        ```PY
        python inference.py -t 'Your specified number of tracks'
        ```
        The default mode is processing the list of midi files
    2. To now generate the dense dataset run the following  code set the inference mode to parsing
        ```py
         python inference.py --mode 'parse' 
        ```

    3. Run help:
       ```py
       python inference.py --help
       ```
       returns:
       ```bash
       usage: inference.py [-h] [-i FILEPATH] [-t TRACKS] [-o OUTPUT] [--mode MODE]
       options:
        -h, --help            show this help message and exit
        -i FILEPATH, --filepath FILEPATH
                              Path to your midi files.
        -t TRACKS, --tracks TRACKS
                              Number of tracks.
        -o OUTPUT, --output OUTPUT
                              output fname of your pianoroll.
        --mode MODE           mode processing or parsing.
       ```
       

TODO
==================
1. [x] command line arguments with user defined inputs
2. [x] Add support for own track checking from list of midis
3. [x] ~~PYPI~~ (cancelled)
        
    
    
    
    
    

MIT License

Copyright (c) 2023 Cliff Njoroge

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
