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.
Files changed (55) hide show
  1. {gcn_python-1.0.1 → gcn_python-1.0.2}/PKG-INFO +4 -4
  2. {gcn_python-1.0.1 → gcn_python-1.0.2}/README.md +3 -3
  3. {gcn_python-1.0.1 → gcn_python-1.0.2}/pyproject.toml +1 -1
  4. {gcn_python-1.0.1 → gcn_python-1.0.2}/.gitignore +0 -0
  5. {gcn_python-1.0.1 → gcn_python-1.0.2}/src/gcn_python/__init__.py +0 -0
  6. {gcn_python-1.0.1 → gcn_python-1.0.2}/src/gcn_python/constants.py +0 -0
  7. {gcn_python-1.0.1 → gcn_python-1.0.2}/src/gcn_python/data/__init__.py +0 -0
  8. {gcn_python-1.0.1 → gcn_python-1.0.2}/src/gcn_python/data/json_reader.py +0 -0
  9. {gcn_python-1.0.1 → gcn_python-1.0.2}/src/gcn_python/data/loader.py +0 -0
  10. {gcn_python-1.0.1 → gcn_python-1.0.2}/src/gcn_python/data/schema.py +0 -0
  11. {gcn_python-1.0.1 → gcn_python-1.0.2}/src/gcn_python/data/verbalize_loader.py +0 -0
  12. {gcn_python-1.0.1 → gcn_python-1.0.2}/src/gcn_python/evaluation/__init__.py +0 -0
  13. {gcn_python-1.0.1 → gcn_python-1.0.2}/src/gcn_python/evaluation/eval_runner.py +0 -0
  14. {gcn_python-1.0.1 → gcn_python-1.0.2}/src/gcn_python/evaluation/metrics.py +0 -0
  15. {gcn_python-1.0.1 → gcn_python-1.0.2}/src/gcn_python/evaluation/recorder.py +0 -0
  16. {gcn_python-1.0.1 → gcn_python-1.0.2}/src/gcn_python/layer1/__init__.py +0 -0
  17. {gcn_python-1.0.1 → gcn_python-1.0.2}/src/gcn_python/layer1/features.py +0 -0
  18. {gcn_python-1.0.1 → gcn_python-1.0.2}/src/gcn_python/layer1/representation.py +0 -0
  19. {gcn_python-1.0.1 → gcn_python-1.0.2}/src/gcn_python/layer2/__init__.py +0 -0
  20. {gcn_python-1.0.1 → gcn_python-1.0.2}/src/gcn_python/layer2/interface.py +0 -0
  21. {gcn_python-1.0.1 → gcn_python-1.0.2}/src/gcn_python/layer2/reference.py +0 -0
  22. {gcn_python-1.0.1 → gcn_python-1.0.2}/src/gcn_python/layer3/__init__.py +0 -0
  23. {gcn_python-1.0.1 → gcn_python-1.0.2}/src/gcn_python/layer3/interface.py +0 -0
  24. {gcn_python-1.0.1 → gcn_python-1.0.2}/src/gcn_python/layer3/pytorch_rgcn.py +0 -0
  25. {gcn_python-1.0.1 → gcn_python-1.0.2}/src/gcn_python/layer3/reference.py +0 -0
  26. {gcn_python-1.0.1 → gcn_python-1.0.2}/src/gcn_python/pipeline/__init__.py +0 -0
  27. {gcn_python-1.0.1 → gcn_python-1.0.2}/src/gcn_python/pipeline/cgnp.py +0 -0
  28. {gcn_python-1.0.1 → gcn_python-1.0.2}/src/gcn_python/pipeline/cli.py +0 -0
  29. {gcn_python-1.0.1 → gcn_python-1.0.2}/src/gcn_python/pipeline/ir_emitter.py +0 -0
  30. {gcn_python-1.0.1 → gcn_python-1.0.2}/src/gcn_python/pipeline/label_builder.py +0 -0
  31. {gcn_python-1.0.1 → gcn_python-1.0.2}/src/gcn_python/taxonomy/__init__.py +0 -0
  32. {gcn_python-1.0.1 → gcn_python-1.0.2}/src/gcn_python/taxonomy/loader.py +0 -0
  33. {gcn_python-1.0.1 → gcn_python-1.0.2}/src/gcn_python/training/__init__.py +0 -0
  34. {gcn_python-1.0.1 → gcn_python-1.0.2}/src/gcn_python/training/bootstrap.py +0 -0
  35. {gcn_python-1.0.1 → gcn_python-1.0.2}/src/gcn_python/training/checkpoint.py +0 -0
  36. {gcn_python-1.0.1 → gcn_python-1.0.2}/src/gcn_python/training/train.py +0 -0
  37. {gcn_python-1.0.1 → gcn_python-1.0.2}/src/gcn_python/verbalizer/__init__.py +0 -0
  38. {gcn_python-1.0.1 → gcn_python-1.0.2}/src/gcn_python/verbalizer/cli.py +0 -0
  39. {gcn_python-1.0.1 → gcn_python-1.0.2}/src/gcn_python/verbalizer/decoder.py +0 -0
  40. {gcn_python-1.0.1 → gcn_python-1.0.2}/src/gcn_python/verbalizer/interface.py +0 -0
  41. {gcn_python-1.0.1 → gcn_python-1.0.2}/src/gcn_python/verbalizer/trainable.py +0 -0
  42. {gcn_python-1.0.1 → gcn_python-1.0.2}/tests/conftest.py +0 -0
  43. {gcn_python-1.0.1 → gcn_python-1.0.2}/tests/test_evaluation.py +0 -0
  44. {gcn_python-1.0.1 → gcn_python-1.0.2}/tests/test_ir_emitter.py +0 -0
  45. {gcn_python-1.0.1 → gcn_python-1.0.2}/tests/test_json_reader.py +0 -0
  46. {gcn_python-1.0.1 → gcn_python-1.0.2}/tests/test_layer1.py +0 -0
  47. {gcn_python-1.0.1 → gcn_python-1.0.2}/tests/test_layer2.py +0 -0
  48. {gcn_python-1.0.1 → gcn_python-1.0.2}/tests/test_layer3.py +0 -0
  49. {gcn_python-1.0.1 → gcn_python-1.0.2}/tests/test_pipeline.py +0 -0
  50. {gcn_python-1.0.1 → gcn_python-1.0.2}/tests/test_pytorch_rgcn.py +0 -0
  51. {gcn_python-1.0.1 → gcn_python-1.0.2}/tests/test_taxonomy.py +0 -0
  52. {gcn_python-1.0.1 → gcn_python-1.0.2}/tests/test_trainable_decoder.py +0 -0
  53. {gcn_python-1.0.1 → gcn_python-1.0.2}/tests/test_training.py +0 -0
  54. {gcn_python-1.0.1 → gcn_python-1.0.2}/tests/test_verbalize_loader.py +0 -0
  55. {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.1
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/Maik-start/projet_CNM.git
102
- cd projet_CNM && make install
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/Maik-start/projet_CNM/blob/master/LICENSE)
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/Maik-start/projet_CNM.git
88
- cd projet_CNM && make install
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/Maik-start/projet_CNM/blob/master/LICENSE)
1093
+ MIT — voir [LICENSE](https://github.com/devmail0561-web/gcn_engine/blob/master/LICENSE)
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "gcn-python"
7
- version = "1.0.1"
7
+ version = "1.0.2"
8
8
  description = "CGNP ML layers — Causal Graph Neural Parser architecture"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.10"
File without changes
File without changes