boltzmann9 0.1.7__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.
Files changed (27) hide show
  1. {boltzmann9-0.1.7 → boltzmann9-0.1.9}/PKG-INFO +1 -1
  2. {boltzmann9-0.1.7 → boltzmann9-0.1.9}/pyproject.toml +1 -2
  3. {boltzmann9-0.1.7 → boltzmann9-0.1.9}/src/boltzmann9/project.py +1 -1
  4. boltzmann9-0.1.9/src/boltzmann9/templates/__init__.py +1 -0
  5. {boltzmann9-0.1.7/src → boltzmann9-0.1.9/src/boltzmann9}/templates/synthetic_generator.py +1 -1
  6. {boltzmann9-0.1.7 → boltzmann9-0.1.9}/src/boltzmann9.egg-info/PKG-INFO +1 -1
  7. {boltzmann9-0.1.7 → boltzmann9-0.1.9}/src/boltzmann9.egg-info/SOURCES.txt +3 -2
  8. {boltzmann9-0.1.7 → boltzmann9-0.1.9}/README.md +0 -0
  9. {boltzmann9-0.1.7 → boltzmann9-0.1.9}/setup.cfg +0 -0
  10. {boltzmann9-0.1.7 → boltzmann9-0.1.9}/src/boltzmann9/__init__.py +0 -0
  11. {boltzmann9-0.1.7 → boltzmann9-0.1.9}/src/boltzmann9/__main__.py +0 -0
  12. {boltzmann9-0.1.7 → boltzmann9-0.1.9}/src/boltzmann9/cli.py +0 -0
  13. {boltzmann9-0.1.7 → boltzmann9-0.1.9}/src/boltzmann9/config.py +0 -0
  14. {boltzmann9-0.1.7 → boltzmann9-0.1.9}/src/boltzmann9/data.py +0 -0
  15. {boltzmann9-0.1.7 → boltzmann9-0.1.9}/src/boltzmann9/data_generator.py +0 -0
  16. {boltzmann9-0.1.7 → boltzmann9-0.1.9}/src/boltzmann9/model.py +0 -0
  17. {boltzmann9-0.1.7 → boltzmann9-0.1.9}/src/boltzmann9/pipeline.py +0 -0
  18. {boltzmann9-0.1.7 → boltzmann9-0.1.9}/src/boltzmann9/preprocessor.py +0 -0
  19. {boltzmann9-0.1.7 → boltzmann9-0.1.9}/src/boltzmann9/run_utils.py +0 -0
  20. {boltzmann9-0.1.7/src → boltzmann9-0.1.9/src/boltzmann9}/templates/config.py +0 -0
  21. {boltzmann9-0.1.7 → boltzmann9-0.1.9}/src/boltzmann9/tester.py +0 -0
  22. {boltzmann9-0.1.7 → boltzmann9-0.1.9}/src/boltzmann9/utils.py +0 -0
  23. {boltzmann9-0.1.7 → boltzmann9-0.1.9}/src/boltzmann9/visualization.py +0 -0
  24. {boltzmann9-0.1.7 → boltzmann9-0.1.9}/src/boltzmann9.egg-info/dependency_links.txt +0 -0
  25. {boltzmann9-0.1.7 → boltzmann9-0.1.9}/src/boltzmann9.egg-info/entry_points.txt +0 -0
  26. {boltzmann9-0.1.7 → boltzmann9-0.1.9}/src/boltzmann9.egg-info/requires.txt +0 -0
  27. {boltzmann9-0.1.7 → boltzmann9-0.1.9}/src/boltzmann9.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: boltzmann9
3
- Version: 0.1.7
3
+ Version: 0.1.9
4
4
  Summary: Restricted Boltzmann Machine implementation in PyTorch
5
5
  License: MIT
6
6
  Requires-Python: >=3.10
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "boltzmann9"
7
- version = "0.1.7"
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.parent / "templates"
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
@@ -11,7 +11,7 @@ from pathlib import Path
11
11
  # Add parent directory to path for imports
12
12
  sys.path.insert(0, str(Path(__file__).parent.parent.parent))
13
13
 
14
- from src.boltzmann.data_generator import SyntheticDataGenerator, GeneratorConfig
14
+ from src.boltzmann9.data_generator import SyntheticDataGenerator, GeneratorConfig
15
15
 
16
16
 
17
17
  def visualize_data(full_df, generator, save_path, show_from=0, show_to=500):
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: boltzmann9
3
- Version: 0.1.7
3
+ Version: 0.1.9
4
4
  Summary: Restricted Boltzmann Machine implementation in PyTorch
5
5
  License: MIT
6
6
  Requires-Python: >=3.10
@@ -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/config.py
24
- src/templates/synthetic_generator.py
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