modulearn 0.1.0__tar.gz → 0.1.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {modulearn-0.1.0 → modulearn-0.1.1}/PKG-INFO +1 -1
- {modulearn-0.1.0 → modulearn-0.1.1}/modulearn/__init__.py +1 -1
- modulearn-0.1.1/modulearn/__main__.py +9 -0
- {modulearn-0.1.0 → modulearn-0.1.1}/pyproject.toml +1 -1
- {modulearn-0.1.0 → modulearn-0.1.1}/.gitignore +0 -0
- {modulearn-0.1.0 → modulearn-0.1.1}/LICENSE +0 -0
- {modulearn-0.1.0 → modulearn-0.1.1}/PUBLISHING.md +0 -0
- {modulearn-0.1.0 → modulearn-0.1.1}/README.md +0 -0
- {modulearn-0.1.0 → modulearn-0.1.1}/docs/implementation-guide.html +0 -0
- {modulearn-0.1.0 → modulearn-0.1.1}/examples/quickstart.py +0 -0
- {modulearn-0.1.0 → modulearn-0.1.1}/modulearn/cli.py +0 -0
- {modulearn-0.1.0 → modulearn-0.1.1}/modulearn/compiler.py +0 -0
- {modulearn-0.1.0 → modulearn-0.1.1}/modulearn/demo.py +0 -0
- {modulearn-0.1.0 → modulearn-0.1.1}/modulearn/registry.py +0 -0
- {modulearn-0.1.0 → modulearn-0.1.1}/modulearn/server.py +0 -0
- {modulearn-0.1.0 → modulearn-0.1.1}/modulearn/static/graph-engine.js +0 -0
- {modulearn-0.1.0 → modulearn-0.1.1}/modulearn/static/graph.html +0 -0
- {modulearn-0.1.0 → modulearn-0.1.1}/modulearn/static/graph.js +0 -0
- {modulearn-0.1.0 → modulearn-0.1.1}/tests/test_smoke.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: modulearn
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.1
|
|
4
4
|
Summary: A visual, Unreal-Blueprints-style node-graph editor for building and launching ML training runs.
|
|
5
5
|
Project-URL: Homepage, https://github.com/IsaiahKoamalu/modulearn
|
|
6
6
|
Project-URL: Source, https://github.com/IsaiahKoamalu/modulearn
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
"""Enable ``python -m modulearn`` — the PATH-free way to run the CLI.
|
|
2
|
+
|
|
3
|
+
Handy when ``pip`` installed the ``modulearn`` console script into a Scripts
|
|
4
|
+
directory that isn't on PATH (common on Windows): ``py -m modulearn demo``.
|
|
5
|
+
"""
|
|
6
|
+
from modulearn.cli import main
|
|
7
|
+
|
|
8
|
+
if __name__ == "__main__":
|
|
9
|
+
main()
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|