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.
- {torchtextclassifiers-1.0.2 → torchtextclassifiers-1.0.3}/PKG-INFO +2 -2
- {torchtextclassifiers-1.0.2 → torchtextclassifiers-1.0.3}/README.md +1 -1
- {torchtextclassifiers-1.0.2 → torchtextclassifiers-1.0.3}/pyproject.toml +1 -1
- {torchtextclassifiers-1.0.2 → torchtextclassifiers-1.0.3}/torchTextClassifiers/__init__.py +0 -0
- {torchtextclassifiers-1.0.2 → torchtextclassifiers-1.0.3}/torchTextClassifiers/dataset/__init__.py +0 -0
- {torchtextclassifiers-1.0.2 → torchtextclassifiers-1.0.3}/torchTextClassifiers/dataset/dataset.py +0 -0
- {torchtextclassifiers-1.0.2 → torchtextclassifiers-1.0.3}/torchTextClassifiers/model/__init__.py +0 -0
- {torchtextclassifiers-1.0.2 → torchtextclassifiers-1.0.3}/torchTextClassifiers/model/components/__init__.py +0 -0
- {torchtextclassifiers-1.0.2 → torchtextclassifiers-1.0.3}/torchTextClassifiers/model/components/attention.py +0 -0
- {torchtextclassifiers-1.0.2 → torchtextclassifiers-1.0.3}/torchTextClassifiers/model/components/categorical_var_net.py +0 -0
- {torchtextclassifiers-1.0.2 → torchtextclassifiers-1.0.3}/torchTextClassifiers/model/components/classification_head.py +0 -0
- {torchtextclassifiers-1.0.2 → torchtextclassifiers-1.0.3}/torchTextClassifiers/model/components/text_embedder.py +0 -0
- {torchtextclassifiers-1.0.2 → torchtextclassifiers-1.0.3}/torchTextClassifiers/model/lightning.py +0 -0
- {torchtextclassifiers-1.0.2 → torchtextclassifiers-1.0.3}/torchTextClassifiers/model/model.py +0 -0
- {torchtextclassifiers-1.0.2 → torchtextclassifiers-1.0.3}/torchTextClassifiers/tokenizers/WordPiece.py +0 -0
- {torchtextclassifiers-1.0.2 → torchtextclassifiers-1.0.3}/torchTextClassifiers/tokenizers/__init__.py +0 -0
- {torchtextclassifiers-1.0.2 → torchtextclassifiers-1.0.3}/torchTextClassifiers/tokenizers/base.py +0 -0
- {torchtextclassifiers-1.0.2 → torchtextclassifiers-1.0.3}/torchTextClassifiers/tokenizers/ngram.py +0 -0
- {torchtextclassifiers-1.0.2 → torchtextclassifiers-1.0.3}/torchTextClassifiers/torchTextClassifiers.py +0 -0
- {torchtextclassifiers-1.0.2 → torchtextclassifiers-1.0.3}/torchTextClassifiers/utilities/__init__.py +0 -0
- {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.
|
|
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
|
|
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
|
|
26
|
+
cd torchTextClassifiers
|
|
27
27
|
|
|
28
28
|
# Install with uv (recommended)
|
|
29
29
|
uv sync
|
|
File without changes
|
{torchtextclassifiers-1.0.2 → torchtextclassifiers-1.0.3}/torchTextClassifiers/dataset/__init__.py
RENAMED
|
File without changes
|
{torchtextclassifiers-1.0.2 → torchtextclassifiers-1.0.3}/torchTextClassifiers/dataset/dataset.py
RENAMED
|
File without changes
|
{torchtextclassifiers-1.0.2 → torchtextclassifiers-1.0.3}/torchTextClassifiers/model/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{torchtextclassifiers-1.0.2 → torchtextclassifiers-1.0.3}/torchTextClassifiers/model/lightning.py
RENAMED
|
File without changes
|
{torchtextclassifiers-1.0.2 → torchtextclassifiers-1.0.3}/torchTextClassifiers/model/model.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{torchtextclassifiers-1.0.2 → torchtextclassifiers-1.0.3}/torchTextClassifiers/tokenizers/base.py
RENAMED
|
File without changes
|
{torchtextclassifiers-1.0.2 → torchtextclassifiers-1.0.3}/torchTextClassifiers/tokenizers/ngram.py
RENAMED
|
File without changes
|
|
File without changes
|
{torchtextclassifiers-1.0.2 → torchtextclassifiers-1.0.3}/torchTextClassifiers/utilities/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|