boltzmann9 0.1.8__tar.gz → 0.1.9__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.
- {boltzmann9-0.1.8 → boltzmann9-0.1.9}/PKG-INFO +1 -1
- {boltzmann9-0.1.8 → boltzmann9-0.1.9}/pyproject.toml +1 -2
- {boltzmann9-0.1.8 → boltzmann9-0.1.9}/src/boltzmann9/project.py +1 -1
- boltzmann9-0.1.9/src/boltzmann9/templates/__init__.py +1 -0
- {boltzmann9-0.1.8 → boltzmann9-0.1.9}/src/boltzmann9.egg-info/PKG-INFO +1 -1
- {boltzmann9-0.1.8 → boltzmann9-0.1.9}/src/boltzmann9.egg-info/SOURCES.txt +3 -2
- {boltzmann9-0.1.8 → boltzmann9-0.1.9}/README.md +0 -0
- {boltzmann9-0.1.8 → boltzmann9-0.1.9}/setup.cfg +0 -0
- {boltzmann9-0.1.8 → boltzmann9-0.1.9}/src/boltzmann9/__init__.py +0 -0
- {boltzmann9-0.1.8 → boltzmann9-0.1.9}/src/boltzmann9/__main__.py +0 -0
- {boltzmann9-0.1.8 → boltzmann9-0.1.9}/src/boltzmann9/cli.py +0 -0
- {boltzmann9-0.1.8 → boltzmann9-0.1.9}/src/boltzmann9/config.py +0 -0
- {boltzmann9-0.1.8 → boltzmann9-0.1.9}/src/boltzmann9/data.py +0 -0
- {boltzmann9-0.1.8 → boltzmann9-0.1.9}/src/boltzmann9/data_generator.py +0 -0
- {boltzmann9-0.1.8 → boltzmann9-0.1.9}/src/boltzmann9/model.py +0 -0
- {boltzmann9-0.1.8 → boltzmann9-0.1.9}/src/boltzmann9/pipeline.py +0 -0
- {boltzmann9-0.1.8 → boltzmann9-0.1.9}/src/boltzmann9/preprocessor.py +0 -0
- {boltzmann9-0.1.8 → boltzmann9-0.1.9}/src/boltzmann9/run_utils.py +0 -0
- {boltzmann9-0.1.8/src → boltzmann9-0.1.9/src/boltzmann9}/templates/config.py +0 -0
- {boltzmann9-0.1.8/src → boltzmann9-0.1.9/src/boltzmann9}/templates/synthetic_generator.py +0 -0
- {boltzmann9-0.1.8 → boltzmann9-0.1.9}/src/boltzmann9/tester.py +0 -0
- {boltzmann9-0.1.8 → boltzmann9-0.1.9}/src/boltzmann9/utils.py +0 -0
- {boltzmann9-0.1.8 → boltzmann9-0.1.9}/src/boltzmann9/visualization.py +0 -0
- {boltzmann9-0.1.8 → boltzmann9-0.1.9}/src/boltzmann9.egg-info/dependency_links.txt +0 -0
- {boltzmann9-0.1.8 → boltzmann9-0.1.9}/src/boltzmann9.egg-info/entry_points.txt +0 -0
- {boltzmann9-0.1.8 → boltzmann9-0.1.9}/src/boltzmann9.egg-info/requires.txt +0 -0
- {boltzmann9-0.1.8 → boltzmann9-0.1.9}/src/boltzmann9.egg-info/top_level.txt +0 -0
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "boltzmann9"
|
|
7
|
-
version = "0.1.
|
|
7
|
+
version = "0.1.9"
|
|
8
8
|
description = "Restricted Boltzmann Machine implementation in PyTorch"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
requires-python = ">=3.10"
|
|
@@ -32,7 +32,6 @@ boltzmann9 = "boltzmann9.cli:main"
|
|
|
32
32
|
[tool.setuptools.packages.find]
|
|
33
33
|
where = ["src"]
|
|
34
34
|
include = ["boltzmann9", "boltzmann9.*"]
|
|
35
|
-
exclude = ["templates", "templates.*"]
|
|
36
35
|
|
|
37
36
|
[tool.black]
|
|
38
37
|
line-length = 88
|
|
@@ -11,7 +11,7 @@ from typing import Any, Dict
|
|
|
11
11
|
|
|
12
12
|
def _get_templates_dir() -> Path:
|
|
13
13
|
"""Get the path to the templates directory."""
|
|
14
|
-
return Path(__file__).parent
|
|
14
|
+
return Path(__file__).parent / "templates"
|
|
15
15
|
|
|
16
16
|
|
|
17
17
|
def _load_config_template(data_path: str) -> str:
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# Template files for project creation
|
|
@@ -20,5 +20,6 @@ src/boltzmann9.egg-info/dependency_links.txt
|
|
|
20
20
|
src/boltzmann9.egg-info/entry_points.txt
|
|
21
21
|
src/boltzmann9.egg-info/requires.txt
|
|
22
22
|
src/boltzmann9.egg-info/top_level.txt
|
|
23
|
-
src/templates/
|
|
24
|
-
src/templates/
|
|
23
|
+
src/boltzmann9/templates/__init__.py
|
|
24
|
+
src/boltzmann9/templates/config.py
|
|
25
|
+
src/boltzmann9/templates/synthetic_generator.py
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|