forked from ashleve/lightning-hydra-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
78 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
# this file is needed here to include configs when building project as a package |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
# reasons you might want to use `environment.yaml` instead of `requirements.txt`: | ||
# - pip installs packages in a loop, without ensuring dependencies across all packages | ||
# are fulfilled simultaneously, but conda achieves proper dependency control across | ||
# all packages | ||
# - conda allows for installing packages without requiring certain compilers or | ||
# libraries to be available in the system, since it installs precompiled binaries | ||
|
||
name: myenv | ||
|
||
channels: | ||
- pytorch | ||
- conda-forge | ||
- defaults | ||
|
||
# it is strongly recommended to specify versions of packages installed through conda | ||
# to avoid situation when version-unspecified packages install their latest major | ||
# versions which can sometimes break things | ||
|
||
# current approach below keeps the dependencies in the same major versions across all | ||
# users, but allows for different minor and patch versions of packages where backwards | ||
# compatibility is usually guaranteed | ||
|
||
dependencies: | ||
- pytorch>=1.10 | ||
- torchvision>=0.11 | ||
- pytorch-lightning=1.* | ||
- torchmetrics=0.* | ||
- hydra-core=1.* | ||
- rich=13.* | ||
- pre-commit=3.* | ||
- pytest=7.* | ||
|
||
# --------- loggers --------- # | ||
# - wandb | ||
# - neptune-client | ||
# - mlflow | ||
# - comet-ml | ||
|
||
- pip>=23 | ||
- pip: | ||
- hydra-optuna-sweeper | ||
- hydra-colorlog | ||
- pyrootutils |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters