Model Card for Model ID
This model is bert-base-uncased finetuned on the MultiGLUE dataset.
Model Details
Model Description
- Developed by: [More Information Needed]
- Shared by [optional]: [More Information Needed]
- Model type: [More Information Needed]
- Language(s) (NLP): English
- License: Apache 2.0 (same as BERT)
- Finetuned from model [optional]: bert-base-uncased
Model Sources [optional]
- Repository: [More Information Needed]
- Paper [optional]: [More Information Needed]
- Demo [optional]: [More Information Needed]
Uses
Direct Use
[More Information Needed]
Downstream Use [optional]
[More Information Needed]
Out-of-Scope Use
[More Information Needed]
Bias, Risks, and Limitations
[More Information Needed]
Recommendations
Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
How to Get Started with the Model
Use the code below to get started with the model.
import numpy as np
import transformers
tokenizer = transformers.AutoTokenizer.from_pretrained('bert-base-uncased')
model = transformers.AutoModelForSequenceClassification.from_pretrained('MtCelesteMa/bert-base-uncased-finetuned-multiglue')
task = 'cola'
sentence1 = 'Our friends won\'t buy this analysis, let alone the next one we propose.'
sentence2 = None
inputs = tokenizer(f'{task}:{sentence1}', f'{sentence2}', return_tensors='pt')
outputs = model(**inputs)
label = np.argmax(outputs.logits[0].detach().numpy())
print(label)
Training Details
Training Data
[More Information Needed]
Training Procedure [optional]
Preprocessing
[More Information Needed]
Speeds, Sizes, Times
[More Information Needed]
Evaluation
Testing Data, Factors & Metrics
Testing Data
[More Information Needed]
Factors
[More Information Needed]
Metrics
[More Information Needed]
Results
[More Information Needed]
Summary
Model Examination [optional]
[More Information Needed]
Environmental Impact
Carbon emissions can be estimated using the Machine Learning Impact calculator presented in Lacoste et al. (2019).
- Hardware Type: RTX A6000
- Hours used: 2
- Cloud Provider: vast.ai
- Compute Region: Sweden
- Carbon Emitted: 0.26 kg
Technical Specifications [optional]
Model Architecture and Objective
[More Information Needed]
Compute Infrastructure
[More Information Needed]
Hardware
[More Information Needed]
Software
[More Information Needed]
Citation [optional]
BibTeX:
[More Information Needed]
APA:
[More Information Needed]
Glossary [optional]
[More Information Needed]
More Information [optional]
[More Information Needed]
Model Card Authors [optional]
[More Information Needed]
Model Card Contact
[More Information Needed]
- Downloads last month
- 3