forked from pulp-platform/nemo
-
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.
Add scikit-learn to requirements (for least-squares equalization)
- Loading branch information
1 parent
5e692ff
commit a1c6fdb
Showing
5 changed files
with
7 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,3 +3,4 @@ torchvision>=0.4.1,<0.5.0 | |
numpy | ||
tqdm | ||
packaging | ||
scikit-learn |
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,3 +3,4 @@ torchvision>=0.5.0,<0.6.0 | |
numpy | ||
tqdm | ||
packaging | ||
scikit-learn |
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,3 +3,4 @@ torchvision>=0.6.0,<0.7.0 | |
numpy | ||
tqdm | ||
packaging | ||
scikit-learn |
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,3 +3,4 @@ torchvision>=0.4.1 | |
numpy | ||
tqdm | ||
packaging | ||
scikit-learn |
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 |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
|
||
setuptools.setup( | ||
name="pytorch-nemo", | ||
version="0.0.4", | ||
version="0.0.5", | ||
author="Francesco Conti", | ||
author_email="[email protected]", | ||
description="NEural Minimizer for pytOrch", | ||
|
@@ -24,6 +24,7 @@ | |
"torchvision>=0.4.1", | ||
"numpy", | ||
"tqdm", | ||
"packaging" | ||
"packaging", | ||
"scikit-learn" | ||
] | ||
) |