Image Classification
Transformers
PyTorch
TensorBoard
English
vit
Generated from Trainer
Eval Results (legacy)
Instructions to use DunnBC22/vit-base-patch16-224-in21k_covid_19_ct_scans with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use DunnBC22/vit-base-patch16-224-in21k_covid_19_ct_scans with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-classification", model="DunnBC22/vit-base-patch16-224-in21k_covid_19_ct_scans") 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("DunnBC22/vit-base-patch16-224-in21k_covid_19_ct_scans") model = AutoModelForImageClassification.from_pretrained("DunnBC22/vit-base-patch16-224-in21k_covid_19_ct_scans") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -95,4 +95,13 @@ The following hyperparameters were used during training:
|
|
| 95 |
- Transformers 4.22.2
|
| 96 |
- Pytorch 1.12.1
|
| 97 |
- Datasets 2.5.2
|
| 98 |
-
- Tokenizers 0.12.1
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 95 |
- Transformers 4.22.2
|
| 96 |
- Pytorch 1.12.1
|
| 97 |
- Datasets 2.5.2
|
| 98 |
+
- Tokenizers 0.12.1
|
| 99 |
+
|
| 100 |
+
|
| 101 |
+
## License Notice
|
| 102 |
+
This model is a fine-tuned derivative of a pretrained model.
|
| 103 |
+
Users must comply with the original model license.
|
| 104 |
+
|
| 105 |
+
|
| 106 |
+
## Dataset Notice
|
| 107 |
+
This model was fine-tuned on third-party datasets which may have separate licenses or usage restrictions.
|