Instructions to use finding-fossils/metaextractor with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use finding-fossils/metaextractor with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("token-classification", model="finding-fossils/metaextractor")# Load model directly from transformers import AutoTokenizer, AutoModelForTokenClassification tokenizer = AutoTokenizer.from_pretrained("finding-fossils/metaextractor") model = AutoModelForTokenClassification.from_pretrained("finding-fossils/metaextractor", device_map="auto") - Notebooks
- Google Colab
- Kaggle
Commit ·
51372ee
1
Parent(s): f9299e7
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,4 +1,8 @@
|
|
| 1 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2 |
# Model Card for MetaExtractor
|
| 3 |
|
| 4 |
<!-- Provide a quick summary of what the model is/does. -->
|
|
|
|
| 1 |
+
---
|
| 2 |
+
tags:
|
| 3 |
+
- Beta
|
| 4 |
+
license: "mit"
|
| 5 |
+
---
|
| 6 |
# Model Card for MetaExtractor
|
| 7 |
|
| 8 |
<!-- Provide a quick summary of what the model is/does. -->
|