gcn-python 1.0.1__tar.gz → 1.0.2__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.
- {gcn_python-1.0.1 → gcn_python-1.0.2}/PKG-INFO +4 -4
- {gcn_python-1.0.1 → gcn_python-1.0.2}/README.md +3 -3
- {gcn_python-1.0.1 → gcn_python-1.0.2}/pyproject.toml +1 -1
- {gcn_python-1.0.1 → gcn_python-1.0.2}/.gitignore +0 -0
- {gcn_python-1.0.1 → gcn_python-1.0.2}/src/gcn_python/__init__.py +0 -0
- {gcn_python-1.0.1 → gcn_python-1.0.2}/src/gcn_python/constants.py +0 -0
- {gcn_python-1.0.1 → gcn_python-1.0.2}/src/gcn_python/data/__init__.py +0 -0
- {gcn_python-1.0.1 → gcn_python-1.0.2}/src/gcn_python/data/json_reader.py +0 -0
- {gcn_python-1.0.1 → gcn_python-1.0.2}/src/gcn_python/data/loader.py +0 -0
- {gcn_python-1.0.1 → gcn_python-1.0.2}/src/gcn_python/data/schema.py +0 -0
- {gcn_python-1.0.1 → gcn_python-1.0.2}/src/gcn_python/data/verbalize_loader.py +0 -0
- {gcn_python-1.0.1 → gcn_python-1.0.2}/src/gcn_python/evaluation/__init__.py +0 -0
- {gcn_python-1.0.1 → gcn_python-1.0.2}/src/gcn_python/evaluation/eval_runner.py +0 -0
- {gcn_python-1.0.1 → gcn_python-1.0.2}/src/gcn_python/evaluation/metrics.py +0 -0
- {gcn_python-1.0.1 → gcn_python-1.0.2}/src/gcn_python/evaluation/recorder.py +0 -0
- {gcn_python-1.0.1 → gcn_python-1.0.2}/src/gcn_python/layer1/__init__.py +0 -0
- {gcn_python-1.0.1 → gcn_python-1.0.2}/src/gcn_python/layer1/features.py +0 -0
- {gcn_python-1.0.1 → gcn_python-1.0.2}/src/gcn_python/layer1/representation.py +0 -0
- {gcn_python-1.0.1 → gcn_python-1.0.2}/src/gcn_python/layer2/__init__.py +0 -0
- {gcn_python-1.0.1 → gcn_python-1.0.2}/src/gcn_python/layer2/interface.py +0 -0
- {gcn_python-1.0.1 → gcn_python-1.0.2}/src/gcn_python/layer2/reference.py +0 -0
- {gcn_python-1.0.1 → gcn_python-1.0.2}/src/gcn_python/layer3/__init__.py +0 -0
- {gcn_python-1.0.1 → gcn_python-1.0.2}/src/gcn_python/layer3/interface.py +0 -0
- {gcn_python-1.0.1 → gcn_python-1.0.2}/src/gcn_python/layer3/pytorch_rgcn.py +0 -0
- {gcn_python-1.0.1 → gcn_python-1.0.2}/src/gcn_python/layer3/reference.py +0 -0
- {gcn_python-1.0.1 → gcn_python-1.0.2}/src/gcn_python/pipeline/__init__.py +0 -0
- {gcn_python-1.0.1 → gcn_python-1.0.2}/src/gcn_python/pipeline/cgnp.py +0 -0
- {gcn_python-1.0.1 → gcn_python-1.0.2}/src/gcn_python/pipeline/cli.py +0 -0
- {gcn_python-1.0.1 → gcn_python-1.0.2}/src/gcn_python/pipeline/ir_emitter.py +0 -0
- {gcn_python-1.0.1 → gcn_python-1.0.2}/src/gcn_python/pipeline/label_builder.py +0 -0
- {gcn_python-1.0.1 → gcn_python-1.0.2}/src/gcn_python/taxonomy/__init__.py +0 -0
- {gcn_python-1.0.1 → gcn_python-1.0.2}/src/gcn_python/taxonomy/loader.py +0 -0
- {gcn_python-1.0.1 → gcn_python-1.0.2}/src/gcn_python/training/__init__.py +0 -0
- {gcn_python-1.0.1 → gcn_python-1.0.2}/src/gcn_python/training/bootstrap.py +0 -0
- {gcn_python-1.0.1 → gcn_python-1.0.2}/src/gcn_python/training/checkpoint.py +0 -0
- {gcn_python-1.0.1 → gcn_python-1.0.2}/src/gcn_python/training/train.py +0 -0
- {gcn_python-1.0.1 → gcn_python-1.0.2}/src/gcn_python/verbalizer/__init__.py +0 -0
- {gcn_python-1.0.1 → gcn_python-1.0.2}/src/gcn_python/verbalizer/cli.py +0 -0
- {gcn_python-1.0.1 → gcn_python-1.0.2}/src/gcn_python/verbalizer/decoder.py +0 -0
- {gcn_python-1.0.1 → gcn_python-1.0.2}/src/gcn_python/verbalizer/interface.py +0 -0
- {gcn_python-1.0.1 → gcn_python-1.0.2}/src/gcn_python/verbalizer/trainable.py +0 -0
- {gcn_python-1.0.1 → gcn_python-1.0.2}/tests/conftest.py +0 -0
- {gcn_python-1.0.1 → gcn_python-1.0.2}/tests/test_evaluation.py +0 -0
- {gcn_python-1.0.1 → gcn_python-1.0.2}/tests/test_ir_emitter.py +0 -0
- {gcn_python-1.0.1 → gcn_python-1.0.2}/tests/test_json_reader.py +0 -0
- {gcn_python-1.0.1 → gcn_python-1.0.2}/tests/test_layer1.py +0 -0
- {gcn_python-1.0.1 → gcn_python-1.0.2}/tests/test_layer2.py +0 -0
- {gcn_python-1.0.1 → gcn_python-1.0.2}/tests/test_layer3.py +0 -0
- {gcn_python-1.0.1 → gcn_python-1.0.2}/tests/test_pipeline.py +0 -0
- {gcn_python-1.0.1 → gcn_python-1.0.2}/tests/test_pytorch_rgcn.py +0 -0
- {gcn_python-1.0.1 → gcn_python-1.0.2}/tests/test_taxonomy.py +0 -0
- {gcn_python-1.0.1 → gcn_python-1.0.2}/tests/test_trainable_decoder.py +0 -0
- {gcn_python-1.0.1 → gcn_python-1.0.2}/tests/test_training.py +0 -0
- {gcn_python-1.0.1 → gcn_python-1.0.2}/tests/test_verbalize_loader.py +0 -0
- {gcn_python-1.0.1 → gcn_python-1.0.2}/tests/test_verbalizer.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.5
|
|
2
2
|
Name: gcn-python
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.2
|
|
4
4
|
Summary: CGNP ML layers — Causal Graph Neural Parser architecture
|
|
5
5
|
Requires-Python: >=3.10
|
|
6
6
|
Requires-Dist: click>=8.1
|
|
@@ -98,8 +98,8 @@ pip install gcn-python
|
|
|
98
98
|
pip install gcn-python torch
|
|
99
99
|
|
|
100
100
|
# Avec le moteur Rust (CLI gcn-analyze, gcn-query, gcn-export)
|
|
101
|
-
git clone https://github.com/
|
|
102
|
-
cd
|
|
101
|
+
git clone https://github.com/devmail0561-web/gcn_engine.git
|
|
102
|
+
cd gcn_engine && make install
|
|
103
103
|
```
|
|
104
104
|
|
|
105
105
|
**Prérequis :** Python ≥ 3.10, NumPy ≥ 1.24
|
|
@@ -1104,4 +1104,4 @@ gcn analyze "Si les ventes baissent, on réduit les coûts." | gcn-verbalize -
|
|
|
1104
1104
|
|
|
1105
1105
|
## Licence
|
|
1106
1106
|
|
|
1107
|
-
MIT — voir [LICENSE](https://github.com/
|
|
1107
|
+
MIT — voir [LICENSE](https://github.com/devmail0561-web/gcn_engine/blob/master/LICENSE)
|
|
@@ -84,8 +84,8 @@ pip install gcn-python
|
|
|
84
84
|
pip install gcn-python torch
|
|
85
85
|
|
|
86
86
|
# Avec le moteur Rust (CLI gcn-analyze, gcn-query, gcn-export)
|
|
87
|
-
git clone https://github.com/
|
|
88
|
-
cd
|
|
87
|
+
git clone https://github.com/devmail0561-web/gcn_engine.git
|
|
88
|
+
cd gcn_engine && make install
|
|
89
89
|
```
|
|
90
90
|
|
|
91
91
|
**Prérequis :** Python ≥ 3.10, NumPy ≥ 1.24
|
|
@@ -1090,4 +1090,4 @@ gcn analyze "Si les ventes baissent, on réduit les coûts." | gcn-verbalize -
|
|
|
1090
1090
|
|
|
1091
1091
|
## Licence
|
|
1092
1092
|
|
|
1093
|
-
MIT — voir [LICENSE](https://github.com/
|
|
1093
|
+
MIT — voir [LICENSE](https://github.com/devmail0561-web/gcn_engine/blob/master/LICENSE)
|
|
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
|