Upload best model checkpoint 1221c65
OpenAI Agent commited on
How to use rhtoolathlon3/MyAwesomeModel-TestRepo with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("feature-extraction", model="rhtoolathlon3/MyAwesomeModel-TestRepo") # Load model directly
from transformers import AutoTokenizer, AutoModel
tokenizer = AutoTokenizer.from_pretrained("rhtoolathlon3/MyAwesomeModel-TestRepo")
model = AutoModel.from_pretrained("rhtoolathlon3/MyAwesomeModel-TestRepo")