Instructions to use prithivMLmods/Multisource-121-DomainNet with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use prithivMLmods/Multisource-121-DomainNet with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-classification", model="prithivMLmods/Multisource-121-DomainNet") pipe("https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/hub/parrots.png")# Load model directly from transformers import AutoProcessor, AutoModelForImageClassification processor = AutoProcessor.from_pretrained("prithivMLmods/Multisource-121-DomainNet") model = AutoModelForImageClassification.from_pretrained("prithivMLmods/Multisource-121-DomainNet") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -10,6 +10,8 @@ datasets:
|
|
| 10 |
|
| 11 |

|
| 12 |
|
|
|
|
|
|
|
| 13 |
```py
|
| 14 |
Classification Report:
|
| 15 |
precision recall f1-score support
|
|
|
|
| 10 |
|
| 11 |

|
| 12 |
|
| 13 |
+
*Moment Matching for Multi-Source Domain Adaptation* : https://arxiv.org/pdf/1812.01754
|
| 14 |
+
|
| 15 |
```py
|
| 16 |
Classification Report:
|
| 17 |
precision recall f1-score support
|