mirror of
https://github.com/wassname/pytorch-lightning.git
synced 2026-08-21 11:20:03 +08:00
* Add support for hierarchical dict * Support nested Namespace * Add docstring * Migrate hparam flattening to each logger * Modify URLs in CHANGELOG * typo * Simplify the conditional branch about Namespace Co-Authored-By: Jirka Borovec <Borda@users.noreply.github.com> * Update CHANGELOG.md Co-Authored-By: Jirka Borovec <Borda@users.noreply.github.com> * added examples section to docstring * renamed _dict -> input_dict * mata_tags.csv -> hparams.yaml * code style fixes * add pyyaml * remove unused import * create the member NAME_HPARAMS_FILE * improve tests * Update tensorboard.py * pass the local test w/o relavents of Horovod * formatting * update dependencies * fix dependencies * Apply suggestions from code review * add savings * warn * docstrings * tests * Apply suggestions from code review * saving * Apply suggestions from code review * use default * remove logging * typo fixes * update docs * update CHANGELOG * clean imports * add blank lines * Update pytorch_lightning/core/lightning.py Co-authored-by: Adrian Wälchli <aedu.waelchli@gmail.com> * Update pytorch_lightning/core/lightning.py Co-authored-by: Adrian Wälchli <aedu.waelchli@gmail.com> * back to namespace * add docs * test fix * update dependencies * add space Co-authored-by: Jirka Borovec <Borda@users.noreply.github.com> Co-authored-by: Adrian Wälchli <aedu.waelchli@gmail.com>
37 lines
661 B
YAML
37 lines
661 B
YAML
# This is Conda environment file
|
|
# Usage: `conda env update -f environment.yml`
|
|
|
|
channels:
|
|
- conda-forge
|
|
- pytorch
|
|
|
|
dependencies:
|
|
- python==3.7.6
|
|
- pip==20.0.2
|
|
- tqdm>=4.35.0
|
|
- numpy>=1.16.4
|
|
- pytorch>=1.1
|
|
- tensorboard>=1.14
|
|
- future>=0.17.1
|
|
- pyyaml>=3.13
|
|
|
|
# For dev and testing
|
|
- tox
|
|
- coverage
|
|
- codecov
|
|
- pytest>=3.0.5
|
|
- pytest-cov
|
|
- pytest-flake8
|
|
- flake8
|
|
- autopep8
|
|
- check-manifest
|
|
- twine==1.13.0
|
|
|
|
- pip:
|
|
- test-tube>=0.7.5
|
|
- mlflow>=1.0.0
|
|
- comet_ml>=1.0.56
|
|
- wandb>=0.8.21
|
|
- neptune-client>=0.4.4
|
|
- trains>=0.13.3
|