Edit model card

Model Card for Model ID

Model Details

Model Description

Model Sources [optional]

Uses

Direct Use

from flair.data import Sentence
from flair.models import SequenceTagger

spanglish_tagger = SequenceTagger.load('benevanoff/spanglish-upos')

example_sentence = "Caperucita Roja put rocks en el estómago de la del perro."

spanglish_tagger.predict(example_sentence)

for token in example_sentence:
    word = token.text
    upos_tag = token.labels[0] # there will only be one label per token
    print(f'The predicted UPOS tag for {word} is {upos_tag.value} with confidence of {upos_tag.score}')

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.

[More Information Needed]

Training Details

Training Data

The Bilinguals in the Midwest Corpus

A subset of the Bangor Miami Corpus

Training Procedure

Preprocessing [optional]

[More Information Needed]

Training Hyperparameters

  • Training regime: [More Information Needed]

Speeds, Sizes, Times [optional]

[More Information Needed]

Evaluation

Testing Data, Factors & Metrics

Testing Data

[More Information Needed]

Factors

[More Information Needed]

Metrics

[More Information Needed]

Results

[More Information Needed]

Summary

Model Examination [optional]

[More Information Needed]

Environmental Impact

Carbon emissions can be estimated using the Machine Learning Impact calculator presented in Lacoste et al. (2019).

  • Hardware Type: AMD Ryzen 7 CPU
  • Hours used: 2

Citation [optional]

BibTeX:

[More Information Needed]

APA:

[More Information Needed]

Downloads last month
196