Transformers How to use gcheronflex/flex-e2e-super-tiny-bert-model with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("feature-extraction", model="gcheronflex/flex-e2e-super-tiny-bert-model") # Load model directly
from transformers import AutoTokenizer, AutoModel
tokenizer = AutoTokenizer.from_pretrained("gcheronflex/flex-e2e-super-tiny-bert-model")
model = AutoModel.from_pretrained("gcheronflex/flex-e2e-super-tiny-bert-model")