KoichiYasuoka commited on
Commit
306005b
·
1 Parent(s): fe581a1

without aggregation_strategy

Browse files
Files changed (1) hide show
  1. README.md +1 -1
README.md CHANGED
@@ -25,7 +25,7 @@ This is a ModernBERT model pretrained for POS-tagging and dependency-parsing, de
25
 
26
  ```py
27
  from transformers import pipeline
28
- nlp=pipeline("universal-dependencies","KoichiYasuoka/modernbert-large-japanese-aozora-ud-embeds",trust_remote_code=True,aggregation_strategy="simple")
29
  print(nlp("全学年にわたって小学校の国語の教科書に挿し絵が用いられている"))
30
  ```
31
 
 
25
 
26
  ```py
27
  from transformers import pipeline
28
+ nlp=pipeline("universal-dependencies","KoichiYasuoka/modernbert-large-japanese-aozora-ud-embeds",trust_remote_code=True)
29
  print(nlp("全学年にわたって小学校の国語の教科書に挿し絵が用いられている"))
30
  ```
31