-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Feature] Add mlflow experiment tracker (#450)
Co-authored-by: debrevitatevitae <[email protected]> Co-authored-by: seitzdom <[email protected]> Co-authored-by: Roland-djee <[email protected]>
- Loading branch information
1 parent
08652a4
commit 5fa4641
Showing
9 changed files
with
778 additions
and
35 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 |
---|---|---|
|
@@ -75,3 +75,7 @@ events.out.tfevents.* | |
*.dvi | ||
|
||
*.gv | ||
|
||
# mlflow | ||
mlruns/ | ||
mlartifacts/ |
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 |
---|---|---|
|
@@ -21,10 +21,11 @@ authors = [ | |
{ name = "Smit Chaudhary", email = "[email protected]" }, | ||
{ name = "Ignacio Fernández Graña", email = "[email protected]" }, | ||
{ name = "Charles Moussa", email = "[email protected]" }, | ||
{ name = "Giorgio Tosti Balducci", email = "[email protected]" }, | ||
] | ||
requires-python = ">=3.9" | ||
license = { text = "Apache 2.0" } | ||
version = "1.7.2" | ||
version = "1.7.3" | ||
classifiers = [ | ||
"License :: OSI Approved :: Apache Software License", | ||
"Programming Language :: Python", | ||
|
@@ -83,8 +84,8 @@ horqrux = [ | |
protocols = ["qadence-protocols"] | ||
libs = ["qadence-libs"] | ||
dlprof = ["nvidia-pyindex", "nvidia-dlprof[pytorch]"] | ||
all = ["pulser", "braket", "visualization", "protocols", "libs"] | ||
|
||
mlflow = ["mlflow"] | ||
all = ["pulser", "braket", "visualization", "protocols", "libs", "mlflow"] | ||
|
||
[tool.hatch.envs.default] | ||
dependencies = [ | ||
|
@@ -102,7 +103,7 @@ dependencies = [ | |
"ruff", | ||
"pydocstringformatter", | ||
] | ||
features = ["pulser", "braket", "visualization", "horqrux"] | ||
features = ["pulser", "braket", "visualization", "horqrux", "mlflow"] | ||
|
||
[tool.hatch.envs.default.scripts] | ||
test = "pytest -n auto --cov-report lcov --cov-config=pyproject.toml --cov=qadence --cov=tests --ignore=./tests/test_examples.py {args}" | ||
|
@@ -139,7 +140,7 @@ dependencies = [ | |
"markdown-exec", | ||
"mike", | ||
] | ||
features = ["pulser", "braket", "horqrux", "visualization"] | ||
features = ["pulser", "braket", "horqrux", "visualization", "mlflow"] | ||
|
||
[tool.hatch.envs.docs.scripts] | ||
build = "mkdocs build --clean --strict" | ||
|
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.