-
Notifications
You must be signed in to change notification settings - Fork 150
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Better messaging around PyTorch workaround (#509)
Priority is compatibility w/ PyTorch; left a link for folks to learn more if they want to customize.
- Loading branch information
1 parent
9a1c72e
commit f2c3ff9
Showing
6 changed files
with
20 additions
and
4 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,8 @@ | |
# Created Date: Saturday February 13th 2021 | ||
# Author: Steven Atkinson ([email protected]) | ||
|
||
# Environment for CPU and macOS (Intel and Apple Silicon) | ||
|
||
name: nam | ||
channels: | ||
- conda-forge # pytest-mock | ||
|
@@ -19,6 +21,8 @@ dependencies: | |
- pydantic | ||
- pytest | ||
- pytest-mock | ||
# Performance note: | ||
# https://github.com/sdatkinson/neural-amp-modeler/issues/505 | ||
- pytorch | ||
- scipy | ||
- semver | ||
|
File renamed without changes.
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 |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
# Author: Steven Atkinson ([email protected]) | ||
|
||
""" | ||
Implements the base PyTorch Lightning model. | ||
Implements the base PyTorch Lightning module. | ||
This is meant to combine an actual model (subclassed from `._base.BaseNet`) | ||
along with loss function boilerplate. | ||
|