Instructions to use dngo0702/dummy-model with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use dngo0702/dummy-model with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("fill-mask", model="dngo0702/dummy-model")# Load model directly from transformers import AutoTokenizer, AutoModelForMaskedLM tokenizer = AutoTokenizer.from_pretrained("dngo0702/dummy-model") model = AutoModelForMaskedLM.from_pretrained("dngo0702/dummy-model") - Notebooks
- Google Colab
- Kaggle
# Load model directly
from transformers import AutoTokenizer, AutoModelForMaskedLM
tokenizer = AutoTokenizer.from_pretrained("dngo0702/dummy-model")
model = AutoModelForMaskedLM.from_pretrained("dngo0702/dummy-model")Quick Links
- Model Card for Model ID
- Model Details
- Uses
- Bias, Risks, and Limitations
- How to Get Started with the Model
- Training Details
- Evaluation
- Model Examination [optional]
- Environmental Impact
- Technical Specifications [optional]
- Citation [optional]
- Glossary [optional]
- More Information [optional]
- Model Card Authors [optional]
- Model Card Contact
- Downloads last month
- 40
Paper for dngo0702/dummy-model
Paper • 1910.09700 • Published • 45
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("fill-mask", model="dngo0702/dummy-model")