Instructions to use protectai/guishe-nuner-v1_orgs-onnx with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use protectai/guishe-nuner-v1_orgs-onnx with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("token-classification", model="protectai/guishe-nuner-v1_orgs-onnx")# Load model directly from transformers import AutoTokenizer, AutoModelForTokenClassification tokenizer = AutoTokenizer.from_pretrained("protectai/guishe-nuner-v1_orgs-onnx") model = AutoModelForTokenClassification.from_pretrained("protectai/guishe-nuner-v1_orgs-onnx", device_map="auto") - Notebooks
- Google Colab
- Kaggle
Create README.md
Browse files
README.md
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
language:
|
| 3 |
+
- en
|
| 4 |
+
inference: false
|
| 5 |
+
pipeline_tag: token-classification
|
| 6 |
+
license: cc-by-sa-4.0
|
| 7 |
+
base_model: guishe/nuner-v1_orgs
|
| 8 |
+
---
|
| 9 |
+
|
| 10 |
+
# ONNX version of guishe/nuner-v1_orgs
|
| 11 |
+
|
| 12 |
+
**This model is a conversion of [guishe/nuner-v1_orgs](https://huggingface.co/guishe/nuner-v1_orgs) to ONNX** format using the [🤗 Optimum](https://huggingface.co/docs/optimum/index) library.
|