Instructions to use EMBO/sd-panelization with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use EMBO/sd-panelization with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("token-classification", model="EMBO/sd-panelization")# Load model directly from transformers import AutoTokenizer, AutoModelForTokenClassification tokenizer = AutoTokenizer.from_pretrained("EMBO/sd-panelization") model = AutoModelForTokenClassification.from_pretrained("EMBO/sd-panelization") - Notebooks
- Google Colab
- Kaggle
Commit ·
160acfd
1
Parent(s): 5a5c89b
allow flax
Browse files- .gitattributes +1 -0
.gitattributes
CHANGED
|
@@ -16,3 +16,4 @@
|
|
| 16 |
*.pth filter=lfs diff=lfs merge=lfs -text
|
| 17 |
pytorch_model.bin filter=lfs diff=lfs merge=lfs -text
|
| 18 |
training_args.bin filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
| 16 |
*.pth filter=lfs diff=lfs merge=lfs -text
|
| 17 |
pytorch_model.bin filter=lfs diff=lfs merge=lfs -text
|
| 18 |
training_args.bin filter=lfs diff=lfs merge=lfs -text
|
| 19 |
+
*.msgpack filter=lfs diff=lfs merge=lfs -text
|