hjxdl 0.0.2__tar.gz → 0.0.4__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.
- {hjxdl-0.0.2/hjxdl.egg-info → hjxdl-0.0.4}/PKG-INFO +1 -1
- hjxdl-0.0.4/hdl/__init__.py +1 -0
- {hjxdl-0.0.2 → hjxdl-0.0.4}/hdl/_version.py +2 -2
- {hjxdl-0.0.2 → hjxdl-0.0.4/hjxdl.egg-info}/PKG-INFO +1 -1
- {hjxdl-0.0.2 → hjxdl-0.0.4}/hjxdl.egg-info/SOURCES.txt +1 -0
- hjxdl-0.0.4/version.txt +1 -0
- hjxdl-0.0.2/version.txt +0 -1
- {hjxdl-0.0.2 → hjxdl-0.0.4}/.github/workflows/python-publish.yml +0 -0
- {hjxdl-0.0.2 → hjxdl-0.0.4}/.gitignore +0 -0
- {hjxdl-0.0.2 → hjxdl-0.0.4}/.gitmodules +0 -0
- {hjxdl-0.0.2 → hjxdl-0.0.4}/MANIFEST.in +0 -0
- {hjxdl-0.0.2 → hjxdl-0.0.4}/README.md +0 -0
- {hjxdl-0.0.2 → hjxdl-0.0.4}/__init__.py +0 -0
- {hjxdl-0.0.2/hdl → hjxdl-0.0.4/hdl/args}/__init__.py +0 -0
- {hjxdl-0.0.2 → hjxdl-0.0.4}/hdl/args/loss_args.py +0 -0
- {hjxdl-0.0.2/hdl/args → hjxdl-0.0.4/hdl/controllers}/__init__.py +0 -0
- {hjxdl-0.0.2/hdl/controllers → hjxdl-0.0.4/hdl/controllers/al}/__init__.py +0 -0
- {hjxdl-0.0.2 → hjxdl-0.0.4}/hdl/controllers/al/al.py +0 -0
- {hjxdl-0.0.2 → hjxdl-0.0.4}/hdl/controllers/al/dispatcher.py +0 -0
- {hjxdl-0.0.2 → hjxdl-0.0.4}/hdl/controllers/al/feedback.py +0 -0
- {hjxdl-0.0.2/hdl/controllers/al → hjxdl-0.0.4/hdl/controllers/explain}/__init__.py +0 -0
- {hjxdl-0.0.2 → hjxdl-0.0.4}/hdl/controllers/explain/shapley.py +0 -0
- {hjxdl-0.0.2 → hjxdl-0.0.4}/hdl/controllers/explain/subgraphx.py +0 -0
- {hjxdl-0.0.2 → hjxdl-0.0.4}/hdl/controllers/predictors/gin_predictor.py +0 -0
- {hjxdl-0.0.2 → hjxdl-0.0.4}/hdl/controllers/predictors/rxn_predictor.py +0 -0
- {hjxdl-0.0.2 → hjxdl-0.0.4}/hdl/controllers/predictors/torch_predictor.py +0 -0
- {hjxdl-0.0.2/hdl/controllers/explain → hjxdl-0.0.4/hdl/controllers/train}/__init__.py +0 -0
- {hjxdl-0.0.2 → hjxdl-0.0.4}/hdl/controllers/train/rxn_train.py +0 -0
- {hjxdl-0.0.2 → hjxdl-0.0.4}/hdl/controllers/train/train.py +0 -0
- {hjxdl-0.0.2 → hjxdl-0.0.4}/hdl/controllers/train/train_ginet.py +0 -0
- {hjxdl-0.0.2 → hjxdl-0.0.4}/hdl/controllers/train/trainer_base.py +0 -0
- {hjxdl-0.0.2 → hjxdl-0.0.4}/hdl/controllers/train/trainer_iterative.py +0 -0
- {hjxdl-0.0.2/hdl/controllers/train → hjxdl-0.0.4/hdl/data}/__init__.py +0 -0
- {hjxdl-0.0.2/hdl/data → hjxdl-0.0.4/hdl/data/dataset}/__init__.py +0 -0
- {hjxdl-0.0.2 → hjxdl-0.0.4}/hdl/data/dataset/base_dataset.py +0 -0
- {hjxdl-0.0.2/hdl/data/dataset → hjxdl-0.0.4/hdl/data/dataset/fp}/__init__.py +0 -0
- {hjxdl-0.0.2 → hjxdl-0.0.4}/hdl/data/dataset/fp/fp_dataset.py +0 -0
- {hjxdl-0.0.2/hdl/data/dataset/fp → hjxdl-0.0.4/hdl/data/dataset/graph}/__init__.py +0 -0
- {hjxdl-0.0.2 → hjxdl-0.0.4}/hdl/data/dataset/graph/chiral.py +0 -0
- {hjxdl-0.0.2 → hjxdl-0.0.4}/hdl/data/dataset/graph/gin.py +0 -0
- {hjxdl-0.0.2 → hjxdl-0.0.4}/hdl/data/dataset/graph/molnet.py +0 -0
- {hjxdl-0.0.2/hdl/data/dataset/graph → hjxdl-0.0.4/hdl/data/dataset/loaders}/__init__.py +0 -0
- {hjxdl-0.0.2 → hjxdl-0.0.4}/hdl/data/dataset/loaders/chiral_graph.py +0 -0
- {hjxdl-0.0.2/hdl/data/dataset/loaders → hjxdl-0.0.4/hdl/data/dataset/loaders/collate_funcs}/__init__.py +0 -0
- {hjxdl-0.0.2 → hjxdl-0.0.4}/hdl/data/dataset/loaders/collate_funcs/fp.py +0 -0
- {hjxdl-0.0.2 → hjxdl-0.0.4}/hdl/data/dataset/loaders/collate_funcs/rxn.py +0 -0
- {hjxdl-0.0.2 → hjxdl-0.0.4}/hdl/data/dataset/loaders/general.py +0 -0
- {hjxdl-0.0.2 → hjxdl-0.0.4}/hdl/data/dataset/loaders/spliter.py +0 -0
- {hjxdl-0.0.2/hdl/data/dataset/loaders/collate_funcs → hjxdl-0.0.4/hdl/data/dataset/samplers}/__init__.py +0 -0
- {hjxdl-0.0.2 → hjxdl-0.0.4}/hdl/data/dataset/samplers/chiral.py +0 -0
- {hjxdl-0.0.2/hdl/data/dataset/samplers → hjxdl-0.0.4/hdl/data/dataset/seq}/__init__.py +0 -0
- {hjxdl-0.0.2 → hjxdl-0.0.4}/hdl/data/dataset/seq/rxn_dataset.py +0 -0
- {hjxdl-0.0.2 → hjxdl-0.0.4}/hdl/data/dataset/utils.py +0 -0
- {hjxdl-0.0.2 → hjxdl-0.0.4}/hdl/data/to_mols.py +0 -0
- {hjxdl-0.0.2/hdl/data/dataset/seq → hjxdl-0.0.4/hdl/features}/__init__.py +0 -0
- {hjxdl-0.0.2/hdl/features → hjxdl-0.0.4/hdl/features/fp}/__init__.py +0 -0
- {hjxdl-0.0.2 → hjxdl-0.0.4}/hdl/features/fp/features_generators.py +0 -0
- {hjxdl-0.0.2/hdl/features/fp → hjxdl-0.0.4/hdl/features/graph}/__init__.py +0 -0
- {hjxdl-0.0.2 → hjxdl-0.0.4}/hdl/features/graph/featurization.py +0 -0
- {hjxdl-0.0.2/hdl/features/graph → hjxdl-0.0.4/hdl/features/utils}/__init__.py +0 -0
- {hjxdl-0.0.2 → hjxdl-0.0.4}/hdl/features/utils/utils.py +0 -0
- {hjxdl-0.0.2 → hjxdl-0.0.4}/hdl/features/vocab.txt +0 -0
- {hjxdl-0.0.2 → hjxdl-0.0.4}/hdl/include/add2.h +0 -0
- {hjxdl-0.0.2 → hjxdl-0.0.4}/hdl/kernel/add2_kernel.cu +0 -0
- {hjxdl-0.0.2 → hjxdl-0.0.4}/hdl/kernel/test +0 -0
- {hjxdl-0.0.2 → hjxdl-0.0.4}/hdl/kernel/test.cu +0 -0
- {hjxdl-0.0.2/hdl/features/utils → hjxdl-0.0.4/hdl/layers}/__init__.py +0 -0
- {hjxdl-0.0.2/hdl/layers → hjxdl-0.0.4/hdl/layers/general}/__init__.py +0 -0
- {hjxdl-0.0.2 → hjxdl-0.0.4}/hdl/layers/general/gp.py +0 -0
- {hjxdl-0.0.2 → hjxdl-0.0.4}/hdl/layers/general/linear.py +0 -0
- {hjxdl-0.0.2/hdl/layers/general → hjxdl-0.0.4/hdl/layers/graph}/__init__.py +0 -0
- {hjxdl-0.0.2 → hjxdl-0.0.4}/hdl/layers/graph/chiral_graph.py +0 -0
- {hjxdl-0.0.2 → hjxdl-0.0.4}/hdl/layers/graph/gcn.py +0 -0
- {hjxdl-0.0.2 → hjxdl-0.0.4}/hdl/layers/graph/gin.py +0 -0
- {hjxdl-0.0.2 → hjxdl-0.0.4}/hdl/layers/graph/tetra.py +0 -0
- {hjxdl-0.0.2 → hjxdl-0.0.4}/hdl/layers/graph/transformer.py +0 -0
- {hjxdl-0.0.2/hdl/layers/graph → hjxdl-0.0.4/hdl/layers/sequential}/__init__.py +0 -0
- {hjxdl-0.0.2/hdl/layers/sequential → hjxdl-0.0.4/hdl/metric_loss}/__init__.py +0 -0
- {hjxdl-0.0.2 → hjxdl-0.0.4}/hdl/metric_loss/loss.py +0 -0
- {hjxdl-0.0.2 → hjxdl-0.0.4}/hdl/metric_loss/metric.py +0 -0
- {hjxdl-0.0.2 → hjxdl-0.0.4}/hdl/metric_loss/multi_label.py +0 -0
- {hjxdl-0.0.2 → hjxdl-0.0.4}/hdl/metric_loss/nt_xent.py +0 -0
- {hjxdl-0.0.2/hdl/metric_loss → hjxdl-0.0.4/hdl/models}/__init__.py +0 -0
- {hjxdl-0.0.2 → hjxdl-0.0.4}/hdl/models/chiral_gnn.py +0 -0
- {hjxdl-0.0.2 → hjxdl-0.0.4}/hdl/models/fast_transformer.py +0 -0
- {hjxdl-0.0.2 → hjxdl-0.0.4}/hdl/models/ginet.py +0 -0
- {hjxdl-0.0.2 → hjxdl-0.0.4}/hdl/models/linear.py +0 -0
- {hjxdl-0.0.2 → hjxdl-0.0.4}/hdl/models/model_dict.py +0 -0
- {hjxdl-0.0.2 → hjxdl-0.0.4}/hdl/models/norm_flows.py +0 -0
- {hjxdl-0.0.2 → hjxdl-0.0.4}/hdl/models/optim_dict.py +0 -0
- {hjxdl-0.0.2 → hjxdl-0.0.4}/hdl/models/rxn.py +0 -0
- {hjxdl-0.0.2 → hjxdl-0.0.4}/hdl/models/utils.py +0 -0
- {hjxdl-0.0.2/hdl/models → hjxdl-0.0.4/hdl/ops}/__init__.py +0 -0
- {hjxdl-0.0.2 → hjxdl-0.0.4}/hdl/ops/utils.py +0 -0
- {hjxdl-0.0.2/hdl/ops → hjxdl-0.0.4/hdl/optims}/__init__.py +0 -0
- {hjxdl-0.0.2 → hjxdl-0.0.4}/hdl/optims/nadam.py +0 -0
- {hjxdl-0.0.2 → hjxdl-0.0.4}/hdl/pytorch/add2_ops.cpp +0 -0
- {hjxdl-0.0.2/hdl/optims → hjxdl-0.0.4/hdl/utils}/__init__.py +0 -0
- {hjxdl-0.0.2 → hjxdl-0.0.4}/hdl/utils/chemical_tools/__init__.py +0 -0
- {hjxdl-0.0.2 → hjxdl-0.0.4}/hdl/utils/chemical_tools/query_info.py +0 -0
- {hjxdl-0.0.2 → hjxdl-0.0.4}/hdl/utils/chemical_tools/sdf.py +0 -0
- {hjxdl-0.0.2/hdl/utils → hjxdl-0.0.4/hdl/utils/database_tools}/__init__.py +0 -0
- {hjxdl-0.0.2 → hjxdl-0.0.4}/hdl/utils/database_tools/connect.py +0 -0
- {hjxdl-0.0.2/hdl/utils/database_tools → hjxdl-0.0.4/hdl/utils/general}/__init__.py +0 -0
- {hjxdl-0.0.2 → hjxdl-0.0.4}/hdl/utils/general/glob.py +0 -0
- {hjxdl-0.0.2/hdl/utils/general → hjxdl-0.0.4/hdl/utils/llm}/__init__.py +0 -0
- {hjxdl-0.0.2 → hjxdl-0.0.4}/hdl/utils/llm/chat.py +0 -0
- {hjxdl-0.0.2 → hjxdl-0.0.4}/hdl/utils/schedulers/__init__.py +0 -0
- {hjxdl-0.0.2 → hjxdl-0.0.4}/hdl/utils/schedulers/norm_lr.py +0 -0
- {hjxdl-0.0.2 → hjxdl-0.0.4}/hjxdl.egg-info/dependency_links.txt +0 -0
- {hjxdl-0.0.2 → hjxdl-0.0.4}/hjxdl.egg-info/top_level.txt +0 -0
- {hjxdl-0.0.2 → hjxdl-0.0.4}/pyproject.toml +0 -0
- {hjxdl-0.0.2 → hjxdl-0.0.4}/setup.cfg +0 -0
- {hjxdl-0.0.2 → hjxdl-0.0.4}/setup.py +0 -0
- {hjxdl-0.0.2 → hjxdl-0.0.4}/update_main.sh +0 -0
@@ -0,0 +1 @@
|
|
1
|
+
from ._version import *
|
@@ -102,6 +102,7 @@ hdl/utils/database_tools/__init__.py
|
|
102
102
|
hdl/utils/database_tools/connect.py
|
103
103
|
hdl/utils/general/__init__.py
|
104
104
|
hdl/utils/general/glob.py
|
105
|
+
hdl/utils/llm/__init__.py
|
105
106
|
hdl/utils/llm/chat.py
|
106
107
|
hdl/utils/schedulers/__init__.py
|
107
108
|
hdl/utils/schedulers/norm_lr.py
|
hjxdl-0.0.4/version.txt
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
0.0.4
|
hjxdl-0.0.2/version.txt
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
0.0.2
|
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
|
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
|
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
|
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
|
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
|
File without changes
|
File without changes
|
File without changes
|