-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
fix bug in prediction and upgrade nndmd
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
build | ||
dist | ||
*.egg-info | ||
# automatically generated by setuptools-scm | ||
pysindy/version.py | ||
# sphinx gallery files | ||
docs/examples | ||
# virtual environment | ||
venv | ||
|
||
# eggs | ||
.eggs | ||
|
||
dev | ||
|
||
**/*cache* | ||
|
||
.coverage | ||
coverage.xml | ||
|
||
.idea | ||
|
||
docs/api | ||
docs/_build | ||
|
||
.ipynb_checkpoints | ||
*/.ipynb_checkpoints/* | ||
*/lightning_logs/* | ||
lightning_logs | ||
.DS_Store | ||
.vscode | ||
|
||
*.pyc | ||
|
||
*.sublime* | ||
|
||
Pipfile | ||
Pipfile.lock | ||
/htmlcov/ |
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta" | |
|
||
[project] | ||
name = "pykoopman" | ||
version = "1.0.8" | ||
version = "1.0.9" | ||
authors = [ | ||
{ name = "Shaowu Pan", email = "[email protected]" }, | ||
{ name = "Eurika Kaiser", email = "[email protected]" }, | ||
|
@@ -42,6 +42,7 @@ dependencies = [ | |
|
||
[project.optional-dependencies] | ||
dev = [ | ||
"pytest <= 7.4.4", | ||
"pytest-cov ~= 4.1.0", | ||
"pytest-lazy-fixture ~= 0.6.3", | ||
"flake8-builtins-unleashed ~= 1.3.1", | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
-e . | ||
-r requirements.txt | ||
# -r requirements-torch.txt --extra-index-url https://download.pytorch.org/whl/cu121/ | ||
-f https://download.pytorch.org/whl/cu121/torch_stable.html | ||
-r requirements-torch.txt | ||
|
||
pytest <= 7.4.4 | ||
pytest-cov ~= 4.1.0 | ||
pytest-lazy-fixture ~= 0.6.3 | ||
flake8-builtins-unleashed ~= 1.3.1 | ||
setuptools_scm ~= 8.0.2 | ||
setuptools_scm_git_archive | ||
jupyter >= 1.0.0 | ||
notebook > 7.0.0, <= 7.0.4 | ||
nbsphinx | ||
sphinx-codeautolink | ||
sphinx >= 3, <= 7.0.0 | ||
sphinxcontrib-apidoc | ||
sphinx_rtd_theme | ||
pre-commit | ||
sphinx-nbexamples | ||
jupyter_contrib_nbextensions | ||
PyQt5 | ||
osqp |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
torch == 2.1.0+cu121 | ||
torchvision | ||
lightning |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
torch | ||
torchvision | ||
lightning |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
matplotlib == 3.5.0 | ||
derivative ~= 0.6.0 | ||
scikit-learn == 1.1.3 | ||
numpy >= 1.20, <= 1.26 | ||
scipy > 1.6.0, <= 1.11.2 | ||
pydmd > 0.4, <= 0.4.1 | ||
optht ~= 0.2.0 | ||
prettytable > 3.0.0, <= 3.9.0 |