quora-competitions/quora
Updated • 1.48k • 23
How to use hoganpham/qqp_v2 with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="hoganpham/qqp_v2") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("hoganpham/qqp_v2")
model = AutoModelForSequenceClassification.from_pretrained("hoganpham/qqp_v2")This model is a fine-tuned version of bert-base-uncased on the quora dataset. It achieves the following results on the evaluation set:
More information needed
More information needed
More information needed
The following hyperparameters were used during training:
| Training Loss | Epoch | Step | Validation Loss | Accuracy |
|---|---|---|---|---|
| 0.2591 | 1.0 | 5054 | 0.2429 | 0.8948 |
| 0.186 | 2.0 | 10108 | 0.2342 | 0.9058 |
| 0.1349 | 3.0 | 15162 | 0.2537 | 0.9073 |
Base model
google-bert/bert-base-uncased