Metadata-Version: 2.1
Name: pugna
Version: 0.2.0
Summary: A lightweight package to perform regression with neural nets
Home-page: https://gitlab.com/SpaceTimeKhantinuum/pugna
Author: Sebastian Khan
Author-email: KhanS22@Cardiff.ac.uk
License: UNKNOWN
Description: # pugna
        
        Neural Network Fitting Code
        
        ## Development
        
        ```
        conda create -n pugna-dev python=3.7
        ```
        
        ### adding new models
        
        new models should be added to the pugna/models directory
        as a new python module. See pugna/models/mscalednn.py for an example.
        
        ## Uploading to pypi
        
        ```
        python setup.py clean --all
        rm -rf dist/
        python3 setup.py sdist bdist_wheel
        python3 -m twine upload  dist/*
        ```
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.6
Description-Content-Type: text/markdown
