upload-best-model 4439876
ArenaToolathon commited on
How to use arenatoolathon-hf/MyAwesomeModel-TestRepo with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("feature-extraction", model="arenatoolathon-hf/MyAwesomeModel-TestRepo") # Load model directly
from transformers import AutoTokenizer, AutoModel
tokenizer = AutoTokenizer.from_pretrained("arenatoolathon-hf/MyAwesomeModel-TestRepo")
model = AutoModel.from_pretrained("arenatoolathon-hf/MyAwesomeModel-TestRepo")