-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactor for Python and dependency upgrades.
- Loading branch information
Showing
26 changed files
with
509 additions
and
694 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
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
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 |
---|---|---|
|
@@ -55,7 +55,6 @@ | |
batch_size=10, | ||
epochs=2, | ||
validation_split=0.2, | ||
verbose=True, | ||
bg_cps=300 | ||
) | ||
|
||
|
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
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 |
---|---|---|
|
@@ -12,7 +12,7 @@ namespaces = false | |
[project] | ||
name = "riid" | ||
description = "Machine learning-based models and utilities for radioisotope identification" | ||
version = "2.1.0" | ||
version = "2.2.0" | ||
maintainers = [ | ||
{name="Tyler Morrow", email="[email protected]"}, | ||
] | ||
|
@@ -41,44 +41,43 @@ classifiers = [ | |
'Topic :: Software Development', | ||
'Topic :: Software Development :: Libraries', | ||
'Topic :: Software Development :: Libraries :: Python Modules', | ||
'Programming Language :: Python', | ||
'Programming Language :: Python :: 3', | ||
'Programming Language :: Python :: 3 :: Only', | ||
'Programming Language :: Python :: 3.8', | ||
'Programming Language :: Python :: 3.9', | ||
'Programming Language :: Python :: 3.10', | ||
'Programming Language :: Python :: 3.11', | ||
'Programming Language :: Python :: 3.12', | ||
] | ||
keywords = ["pyriid", "riid", "machine learning", "radioisotope identification", "gamma spectrum"] | ||
|
||
requires-python = ">=3.8,<3.11" | ||
requires-python = ">=3.9,<3.13" | ||
dependencies = [ | ||
"jsonschema ==4.17.*", | ||
"matplotlib ==3.7.*", | ||
"pyyaml ==6.0.*", | ||
"seaborn ==0.12.*", | ||
"tf2onnx ==1.14.*", | ||
"onnx ==1.14.1", | ||
"tqdm ==4.65.*", | ||
"numpy ==1.23.*", | ||
"pandas ==2.0.*", | ||
"parmap ==1.6.*", | ||
"pythonnet ==3.0.*; platform_system == 'Windows'", | ||
"tables ==3.8.*", | ||
"tensorflow ==2.12.*", | ||
"tensorflow-io ==0.27.*", | ||
"tensorflow-model-optimization ==0.7.*", | ||
"tensorflow-probability ==0.20.*", | ||
"typeguard ==2.7.*", | ||
"scikit-learn ==1.2.*", | ||
"jsonschema ==4.23.*", # 3.8 - 3.13 | ||
"matplotlib ==3.9.*", # 3.9 - 3.12 | ||
"numpy ==1.26.*", # 3.9 - 3.12, also to be limited by onnx 1.16.2 | ||
"pandas ==2.2.*", # >= 3.9 | ||
"pythonnet ==3.0.3; platform_system == 'Windows'", # 3.7 - 3.12 | ||
"pyyaml ==6.0.*", # >= 3.6 | ||
"tables ==3.9.*", # >= 3.9 | ||
"scikit-learn ==1.5.*", # 3.9 - 3.12 | ||
"scipy ==1.13.*", # >= 3.10 | ||
"seaborn ==0.13.*", # >= 3.8 | ||
"tensorflow ==2.16.*", # 3.9 - 3.12 | ||
"tensorflow-model-optimization ==0.8.*", # 3.7 - 3.12 | ||
"onnx ==1.16.1", # 3.7 - 3.10 | ||
"tf2onnx ==1.16.1", # 3.7 - 3.10 | ||
"tqdm ==4.66.*", # >= 3.7 | ||
"typeguard ==4.3.*", # 3.9 - 3.12 | ||
] | ||
|
||
[project.optional-dependencies] | ||
dev = [ | ||
"flake8", | ||
"flake8-quotes", | ||
"coverage", | ||
"ipykernel", | ||
"flake8", | ||
"flake8-quotes", | ||
"tabulate", | ||
] | ||
|
||
[project.urls] | ||
repository = "https://github.com/sandialabs/PyRIID" | ||
Documentation = "https://sandialabs.github.io/PyRIID" | ||
Repository = "https://github.com/sandialabs/PyRIID" |
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
Oops, something went wrong.