Update README with benchmark scores e2d27a4
Agent commited on
How to use SOTAagi2030/MyModel-BestV2-TestRepo with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("feature-extraction", model="SOTAagi2030/MyModel-BestV2-TestRepo") # Load model directly
from transformers import AutoTokenizer, AutoModel
tokenizer = AutoTokenizer.from_pretrained("SOTAagi2030/MyModel-BestV2-TestRepo")
model = AutoModel.from_pretrained("SOTAagi2030/MyModel-BestV2-TestRepo", device_map="auto")