Text Classification
Transformers
PyTorch
TensorBoard
Rust
English
fnet
Generated from Trainer
fnet-bert-base-comparison
Eval Results (legacy)
Instructions to use gchhablani/fnet-base-finetuned-sst2 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use gchhablani/fnet-base-finetuned-sst2 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="gchhablani/fnet-base-finetuned-sst2")# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("gchhablani/fnet-base-finetuned-sst2") model = AutoModelForSequenceClassification.from_pretrained("gchhablani/fnet-base-finetuned-sst2") - Notebooks
- Google Colab
- Kaggle
Commit ·
177db31
1
Parent(s): 7dbdb8b
Update README.md
Browse files
README.md
CHANGED
|
@@ -35,6 +35,8 @@ It achieves the following results on the evaluation set:
|
|
| 35 |
- Loss: 0.4674
|
| 36 |
- Accuracy: 0.8945
|
| 37 |
|
|
|
|
|
|
|
| 38 |
## Model description
|
| 39 |
|
| 40 |
More information needed
|
|
|
|
| 35 |
- Loss: 0.4674
|
| 36 |
- Accuracy: 0.8945
|
| 37 |
|
| 38 |
+
The model was fine-tuned to compare [google/fnet-base](https://huggingface.co/google/fnet-base) as introduced in [this paper](https://arxiv.org/abs/2105.03824) against [bert-base-cased](https://huggingface.co/bert-base-cased).
|
| 39 |
+
|
| 40 |
## Model description
|
| 41 |
|
| 42 |
More information needed
|