benevanoff commited on
Commit
96186da
verified
1 Parent(s): abcba9b

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +4 -3
README.md CHANGED
@@ -11,7 +11,6 @@ pipeline_tag: token-classification
11
 
12
  <!-- Provide a quick summary of what the model is/does. -->
13
 
14
- This modelcard aims to be a base template for new models. It has been generated using [this raw template](https://github.com/huggingface/huggingface_hub/blob/main/src/huggingface_hub/templates/modelcard_template.md?plain=1).
15
 
16
  ## Model Details
17
 
@@ -54,7 +53,7 @@ example_sentence = "Caperucita Roja put rocks en el est贸mago de la del perro."
54
 
55
  spanglish_tagger.predict(example_sentence)
56
 
57
- for token in flair_sentence:
58
  word = token.text
59
  upos_tag = token.labels[0] # there will only be one label per token
60
  print(f'The predicted UPOS tag for {word} is {upos_tag.value} with confidence of {upos_tag.score}')
@@ -96,7 +95,9 @@ Use the code below to get started with the model.
96
 
97
  <!-- This should link to a Dataset Card, perhaps with a short stub of information on what the training data is all about as well as documentation related to data pre-processing or additional filtering. -->
98
 
99
- [More Information Needed]
 
 
100
 
101
  ### Training Procedure
102
 
 
11
 
12
  <!-- Provide a quick summary of what the model is/does. -->
13
 
 
14
 
15
  ## Model Details
16
 
 
53
 
54
  spanglish_tagger.predict(example_sentence)
55
 
56
+ for token in example_sentence:
57
  word = token.text
58
  upos_tag = token.labels[0] # there will only be one label per token
59
  print(f'The predicted UPOS tag for {word} is {upos_tag.value} with confidence of {upos_tag.score}')
 
95
 
96
  <!-- This should link to a Dataset Card, perhaps with a short stub of information on what the training data is all about as well as documentation related to data pre-processing or additional filtering. -->
97
 
98
+ [The Bilinguals in the Midwest Corpus](https://aclanthology.org/2022.lrec-1.590/)
99
+
100
+ A subset of the [Bangor Miami Corpus](http://bangortalk.org.uk/speakers.php?c=miami)
101
 
102
  ### Training Procedure
103