Instructions to use microsoft/beit-base-patch16-224 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use microsoft/beit-base-patch16-224 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-classification", model="microsoft/beit-base-patch16-224") pipe("https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/hub/parrots.png")# Load model directly from transformers import AutoImageProcessor, AutoModelForImageClassification processor = AutoImageProcessor.from_pretrained("microsoft/beit-base-patch16-224") model = AutoModelForImageClassification.from_pretrained("microsoft/beit-base-patch16-224") - Inference
- Notebooks
- Google Colab
- Kaggle
Move first line of bibtex to new line
Browse files
README.md
CHANGED
|
@@ -76,7 +76,8 @@ For evaluation results on several image classification benchmarks, we refer to t
|
|
| 76 |
|
| 77 |
### BibTeX entry and citation info
|
| 78 |
|
| 79 |
-
```
|
|
|
|
| 80 |
author = {Hangbo Bao and
|
| 81 |
Li Dong and
|
| 82 |
Furu Wei},
|
|
|
|
| 76 |
|
| 77 |
### BibTeX entry and citation info
|
| 78 |
|
| 79 |
+
```bibtex
|
| 80 |
+
@article{DBLP:journals/corr/abs-2106-08254,
|
| 81 |
author = {Hangbo Bao and
|
| 82 |
Li Dong and
|
| 83 |
Furu Wei},
|