ydshieh/coco_dataset_script
Updated • 473 • 19
How to use ddanshin/clip-roberta-finetuned with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("feature-extraction", model="ddanshin/clip-roberta-finetuned") # Load model directly
from transformers import AutoProcessor, AutoModel
processor = AutoProcessor.from_pretrained("ddanshin/clip-roberta-finetuned")
model = AutoModel.from_pretrained("ddanshin/clip-roberta-finetuned")# Load model directly
from transformers import AutoProcessor, AutoModel
processor = AutoProcessor.from_pretrained("ddanshin/clip-roberta-finetuned")
model = AutoModel.from_pretrained("ddanshin/clip-roberta-finetuned")YAML Metadata Error:"base_model" with value "./clip-roberta" is not valid. Use a model id from https://hf.co/models.
This model is a fine-tuned version of ./clip-roberta on the ydshieh/coco_dataset_script 2017 dataset. It achieves the following results on the evaluation set:
More information needed
More information needed
More information needed
The following hyperparameters were used during training:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("feature-extraction", model="ddanshin/clip-roberta-finetuned")