nyu-mll/glue
Viewer • Updated • 1.49M • 856k • 1.07k
How to use yujiepan/bert-base-uncased-sst2-unstructured-sparsity-80 with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="yujiepan/bert-base-uncased-sst2-unstructured-sparsity-80") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("yujiepan/bert-base-uncased-sst2-unstructured-sparsity-80")
model = AutoModelForSequenceClassification.from_pretrained("yujiepan/bert-base-uncased-sst2-unstructured-sparsity-80", device_map="auto")This model is a fine-tuned version of bert-base-uncased on the GLUE SST2 dataset. The sparsity on linear layers is 80%.
It achieves the following results on the evaluation set:
More information needed
More information needed