torchtextclassifiers 1.0.2__tar.gz → 1.0.3__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 (21) hide show
  1. {torchtextclassifiers-1.0.2 → torchtextclassifiers-1.0.3}/PKG-INFO +2 -2
  2. {torchtextclassifiers-1.0.2 → torchtextclassifiers-1.0.3}/README.md +1 -1
  3. {torchtextclassifiers-1.0.2 → torchtextclassifiers-1.0.3}/pyproject.toml +1 -1
  4. {torchtextclassifiers-1.0.2 → torchtextclassifiers-1.0.3}/torchTextClassifiers/__init__.py +0 -0
  5. {torchtextclassifiers-1.0.2 → torchtextclassifiers-1.0.3}/torchTextClassifiers/dataset/__init__.py +0 -0
  6. {torchtextclassifiers-1.0.2 → torchtextclassifiers-1.0.3}/torchTextClassifiers/dataset/dataset.py +0 -0
  7. {torchtextclassifiers-1.0.2 → torchtextclassifiers-1.0.3}/torchTextClassifiers/model/__init__.py +0 -0
  8. {torchtextclassifiers-1.0.2 → torchtextclassifiers-1.0.3}/torchTextClassifiers/model/components/__init__.py +0 -0
  9. {torchtextclassifiers-1.0.2 → torchtextclassifiers-1.0.3}/torchTextClassifiers/model/components/attention.py +0 -0
  10. {torchtextclassifiers-1.0.2 → torchtextclassifiers-1.0.3}/torchTextClassifiers/model/components/categorical_var_net.py +0 -0
  11. {torchtextclassifiers-1.0.2 → torchtextclassifiers-1.0.3}/torchTextClassifiers/model/components/classification_head.py +0 -0
  12. {torchtextclassifiers-1.0.2 → torchtextclassifiers-1.0.3}/torchTextClassifiers/model/components/text_embedder.py +0 -0
  13. {torchtextclassifiers-1.0.2 → torchtextclassifiers-1.0.3}/torchTextClassifiers/model/lightning.py +0 -0
  14. {torchtextclassifiers-1.0.2 → torchtextclassifiers-1.0.3}/torchTextClassifiers/model/model.py +0 -0
  15. {torchtextclassifiers-1.0.2 → torchtextclassifiers-1.0.3}/torchTextClassifiers/tokenizers/WordPiece.py +0 -0
  16. {torchtextclassifiers-1.0.2 → torchtextclassifiers-1.0.3}/torchTextClassifiers/tokenizers/__init__.py +0 -0
  17. {torchtextclassifiers-1.0.2 → torchtextclassifiers-1.0.3}/torchTextClassifiers/tokenizers/base.py +0 -0
  18. {torchtextclassifiers-1.0.2 → torchtextclassifiers-1.0.3}/torchTextClassifiers/tokenizers/ngram.py +0 -0
  19. {torchtextclassifiers-1.0.2 → torchtextclassifiers-1.0.3}/torchTextClassifiers/torchTextClassifiers.py +0 -0
  20. {torchtextclassifiers-1.0.2 → torchtextclassifiers-1.0.3}/torchTextClassifiers/utilities/__init__.py +0 -0
  21. {torchtextclassifiers-1.0.2 → torchtextclassifiers-1.0.3}/torchTextClassifiers/utilities/plot_explainability.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: torchtextclassifiers
3
- Version: 1.0.2
3
+ Version: 1.0.3
4
4
  Summary: A text classification toolkit to easily build, train and evaluate deep learning text classifiers using PyTorch.
5
5
  Keywords: fastText,text classification,NLP,automatic coding,deep learning
6
6
  Author: Cédric Couralet, Meilame Tayebjee
@@ -49,7 +49,7 @@ A unified, extensible framework for text classification with categorical variabl
49
49
  ```bash
50
50
  # Clone the repository
51
51
  git clone https://github.com/InseeFrLab/torchTextClassifiers.git
52
- cd torchtextClassifiers
52
+ cd torchTextClassifiers
53
53
 
54
54
  # Install with uv (recommended)
55
55
  uv sync
@@ -23,7 +23,7 @@ A unified, extensible framework for text classification with categorical variabl
23
23
  ```bash
24
24
  # Clone the repository
25
25
  git clone https://github.com/InseeFrLab/torchTextClassifiers.git
26
- cd torchtextClassifiers
26
+ cd torchTextClassifiers
27
27
 
28
28
  # Install with uv (recommended)
29
29
  uv sync
@@ -18,7 +18,7 @@ dependencies = [
18
18
  "pytorch-lightning>=2.4.0",
19
19
  ]
20
20
  requires-python = ">=3.11"
21
- version="1.0.2"
21
+ version="1.0.3"
22
22
 
23
23
 
24
24
  [dependency-groups]