-
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.
Merge pull request #189 from deepskies/feature/package_reorg
Feature/package reorg
- Loading branch information
Showing
30 changed files
with
45 additions
and
2,563 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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
File renamed without changes.
File renamed without changes.
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
from src.models.models import ModelLoader | ||
from deepuq.models.models import ModelLoader | ||
|
||
ModelModules = {"ModelLoader": ModelLoader} |
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
File renamed without changes.
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
[tool.poetry] | ||
name = "DeepUQ" | ||
packages = [{include = "src"}] | ||
version = "0.1.1" | ||
packages = [{include = "deepuq"}] | ||
version = "0.1.2" | ||
description = "a package for investigating and comparing the predictive uncertainties from deep learning models" | ||
authors = ["beckynevin <[email protected]>"] | ||
readme = "README.md" | ||
license = "MIT" | ||
|
||
[tool.poetry.scripts] | ||
UQensemble = "src.scripts.DeepEnsemble:main" | ||
UQder = "src.scripts.DeepEvidentialRegression:main" | ||
UQensemble = "deepuq.scripts.DeepEnsemble:main" | ||
UQder = "deepuq.scripts.DeepEvidentialRegression:main" | ||
|
||
[tool.poetry.dependencies] | ||
python = ">=3.10,<3.11" | ||
|
Oops, something went wrong.