This is the model card of a 🤗 transformers model that has been pushed on the Hub. This model card has been automatically generated.
Developed by: [More Information Needed]
Funded by [optional]: [More Information Needed]
Shared by [optional]: [More Information Needed]
Model type: [More Information Needed]
Language(s) (NLP): [More Information Needed]
License: [More Information Needed]
Finetuned from model [optional]: [More Information Needed]
Model Sources [optional]
Repository: [More Information Needed]
Paper [optional]: [More Information Needed]
Demo [optional]: [More Information Needed]
Uses
Direct Use
[More Information Needed]
Downstream Use [optional]
[More Information Needed]
Out-of-Scope Use
[More Information Needed]
Bias, Risks, and Limitations
[More Information Needed]
Recommendations
Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
How to Get Started with the Model
Use the code below to get started with the model.
from transformers import AutoModelForTokenClassification, AutoTokenizer, pipeline
model = AutoModelForTokenClassification.from_pretrained('kalexa2/fabner-ner')
tokenizer = AutoTokenizer.from_pretrained('kalexa2/fabner-ner')
token_classifier = pipeline('ner',
model=model,
tokenizer=tokenizer,
aggregation_strategy="simple" )
r = token_classifier("Here, we report in-situ characterization of melt-flow dynamics in every location of the entire melt pool in laser metal additive manufacturing by populous and uniformly dispersed micro-tracers through in-situ high-resolution synchrotron x-ray imaging .")
for entity in r:
print(entity)