Instructions to use SummerChiam/pond with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use SummerChiam/pond with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-classification", model="SummerChiam/pond") 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("SummerChiam/pond") model = AutoModelForImageClassification.from_pretrained("SummerChiam/pond") - Notebooks
- Google Colab
- Kaggle
Adding `safetensors` variant of this model
#1
by SFconvertbot - opened
- .gitattributes +1 -0
- model.safetensors +3 -0
.gitattributes
CHANGED
|
@@ -36,3 +36,4 @@ images/Normal0.png filter=lfs diff=lfs merge=lfs -text
|
|
| 36 |
images/NormalCement0.png filter=lfs diff=lfs merge=lfs -text
|
| 37 |
images/NormalNight0.png filter=lfs diff=lfs merge=lfs -text
|
| 38 |
images/NormalRain0.png filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
| 36 |
images/NormalCement0.png filter=lfs diff=lfs merge=lfs -text
|
| 37 |
images/NormalNight0.png filter=lfs diff=lfs merge=lfs -text
|
| 38 |
images/NormalRain0.png filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
model.safetensors filter=lfs diff=lfs merge=lfs -text
|
model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b868c1d6eec88cba55f9de5d38ec0ed9995230082da087679247b395f1de1ffd
|
| 3 |
+
size 343239356
|