david-inf commited on
Commit
ecea128
·
verified ·
1 Parent(s): e533322

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +24 -0
README.md ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - en
4
+ metrics:
5
+ - accuracy
6
+ pipeline_tag: text-classification
7
+ tags:
8
+ - medical
9
+ library_name: transformers
10
+ ---
11
+
12
+ ### Model summary
13
+ `bert-sci-am` is a BERT-family model trained for scientific literature argument mining. At low-level it performs sentence classification.
14
+
15
+ ### How to use
16
+
17
+ ```python
18
+ from transformers import AutoModelForSequenceClassification, AutoTokenizer
19
+ checkpoint = "david-inf/bert-sci-am"
20
+ device = "cuda"
21
+
22
+ model =
23
+ tokenizer =
24
+ ```