KoichiYasuoka commited on
Commit
a9616d6
1 Parent(s): 8b43467

initial release

Browse files
Files changed (1) hide show
  1. README.md +27 -1
README.md CHANGED
@@ -1,3 +1,29 @@
1
  ---
2
- license: apache-2.0
 
 
 
 
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ language:
3
+ - "ja"
4
+ tags:
5
+ - "japanese"
6
+ - "token-classification"
7
+ - "pos"
8
+ datasets:
9
+ - "universal_dependencies"
10
+ license: "apache-2.0"
11
+ pipeline_tag: "token-classification"
12
+ widget:
13
+ - text: "国境の長いトンネルを抜けると雪国であった。"
14
  ---
15
+
16
+ # Swallow-MS-7b-upos
17
+
18
+ ## Model Description
19
+
20
+ This is a Mistral model for POS-tagging, derived from [Swallow-MS-7b-v0.1](https://huggingface.co/tokyotech-llm/Swallow-MS-7b-v0.1). Every short-unit-word is tagged by [UPOS](https://universaldependencies.org/u/pos/) (Universal Part-Of-Speech) and [FEATS](https://universaldependencies.org/u/feat/).
21
+
22
+ ## How to Use
23
+
24
+ ```py
25
+ from transformers import pipeline
26
+ nlp=pipeline("upos","KoichiYasuoka/Swallow-MS-7b-upos",trust_remote_code=True,aggregation_strategy="simple")
27
+ print(nlp("国境の長いトンネルを抜けると雪国であった。"))
28
+ ```
29
+