Metadata-Version: 2.1
Name: pytorch-lightning-applications
Version: 0.0.1
Summary: ML and deep learning applications implemented with PyTorch Lighting.
Home-page: https://github.com/leemengtaiwan/pytorch_lightning_applications
Author: Meng Lee
Author-email: b98705001@gmail.com
License: Apache Software License 2.0
Description: # PyTorch Lightning Applications
        > 以 PyTorch Lightning 實作的機器學習與深度學習應用。
        
        
        ## 本地開發
        
        載下 repo：
        
        ```bash
        export REPO=pytorch_lightning_applications
        git clone https://github.com/leemengtaiwan/$REPO.git
        cd $REPO
        ```
        
        建立新的 [Anaconda](https://www.anaconda.com/) 環境並安裝函式庫：
        
        ```bash
        conda create -n $REPO python=3.6 -y
        conda activate $REPO
        pip install -r requirements.txt
        ```
        
        設置 [nbdev](https://github.com/fastai/nbdev) 環境並以可修改的方式安裝此 package：
        
        ```bash
        nbdev_install_git_hooks
        nbdev_build_lib
        pip install -e .
        nbdev_build_docs
        ```
        
Keywords: pytorch,pytorch lightning,python,deep learning,machine learning
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Requires-Python: >=3.6
Description-Content-Type: text/markdown
