deeptan-network 0.1.0__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 (33) hide show
  1. deeptan_network-0.1.0/.gitignore +28 -0
  2. deeptan_network-0.1.0/LICENSE +674 -0
  3. deeptan_network-0.1.0/PKG-INFO +1306 -0
  4. deeptan_network-0.1.0/README.md +574 -0
  5. deeptan_network-0.1.0/pyproject.toml +134 -0
  6. deeptan_network-0.1.0/src/deeptan/__init__.py +9 -0
  7. deeptan_network-0.1.0/src/deeptan/cli/__init__.py +5 -0
  8. deeptan_network-0.1.0/src/deeptan/cli/deeptan_fit.py +77 -0
  9. deeptan_network-0.1.0/src/deeptan/cli/deeptan_litdata.py +113 -0
  10. deeptan_network-0.1.0/src/deeptan/cli/deeptan_perturb.py +31 -0
  11. deeptan_network-0.1.0/src/deeptan/cli/deeptan_pkl2h5.py +41 -0
  12. deeptan_network-0.1.0/src/deeptan/cli/deeptan_predict.py +36 -0
  13. deeptan_network-0.1.0/src/deeptan/cli/hello.py +6 -0
  14. deeptan_network-0.1.0/src/deeptan/cli/print_sc_h5.py +32 -0
  15. deeptan_network-0.1.0/src/deeptan/constants/__init__.py +9 -0
  16. deeptan_network-0.1.0/src/deeptan/constants/art.py +9 -0
  17. deeptan_network-0.1.0/src/deeptan/constants/default.py +75 -0
  18. deeptan_network-0.1.0/src/deeptan/constants/dict_key.py +98 -0
  19. deeptan_network-0.1.0/src/deeptan/constants/fname.py +7 -0
  20. deeptan_network-0.1.0/src/deeptan/constants/hparam_candidates.py +8 -0
  21. deeptan_network-0.1.0/src/deeptan/graph/__init__.py +5 -0
  22. deeptan_network-0.1.0/src/deeptan/graph/model.py +1000 -0
  23. deeptan_network-0.1.0/src/deeptan/graph/modules.py +720 -0
  24. deeptan_network-0.1.0/src/deeptan/graph/recon.py +246 -0
  25. deeptan_network-0.1.0/src/deeptan/utils/.ipynb_checkpoints/data-checkpoint.py +1042 -0
  26. deeptan_network-0.1.0/src/deeptan/utils/.ipynb_checkpoints/metrics-checkpoint.py +867 -0
  27. deeptan_network-0.1.0/src/deeptan/utils/.ipynb_checkpoints/peaks-checkpoint.py +210 -0
  28. deeptan_network-0.1.0/src/deeptan/utils/.ipynb_checkpoints/uni-checkpoint.py +343 -0
  29. deeptan_network-0.1.0/src/deeptan/utils/__init__.py +5 -0
  30. deeptan_network-0.1.0/src/deeptan/utils/data.py +1042 -0
  31. deeptan_network-0.1.0/src/deeptan/utils/metrics.py +863 -0
  32. deeptan_network-0.1.0/src/deeptan/utils/peaks.py +210 -0
  33. deeptan_network-0.1.0/src/deeptan/utils/uni.py +354 -0
@@ -0,0 +1,28 @@
1
+ # Python-generated files
2
+ __pycache__/
3
+ *.py[oc]
4
+ build/
5
+ dist/
6
+ wheels/
7
+ *.egg-info
8
+
9
+ # Virtual environments
10
+ .venv
11
+ venv_*
12
+ *.sif
13
+ sandbox*/
14
+
15
+ # Test results
16
+ .vscode/
17
+ .tmp*
18
+ target/
19
+ logs/
20
+ test_*/
21
+ comparison/
22
+ profile*.svg
23
+ perf*.svg
24
+ lightning_logs/
25
+ optimized_data/
26
+ *.npy
27
+ *.npz
28
+ *.zip