Instructions to use chain-pin/myModel with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use chain-pin/myModel with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-classification", model="chain-pin/myModel") 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("chain-pin/myModel") model = AutoModelForImageClassification.from_pretrained("chain-pin/myModel") - Notebooks
- Google Colab
- Kaggle
Upload 2 files
Browse files- model_quantized.onnx +3 -0
- pytorch_model.bin +3 -0
model_quantized.onnx
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8f7ba23df42f9177e0ee6eff6e81c1d0b131125be8efd97ae1028949a649ca7f
|
| 3 |
+
size 93981695
|
pytorch_model.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c98bd54c96f7354ecb9810eb5084d7707c6f71fd03f1b41b98ddf917b4a9b7e4
|
| 3 |
+
size 98579349
|