atrytone commited on
Commit
ec1878a
1 Parent(s): d9fcac1

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +12 -3
README.md CHANGED
@@ -23,7 +23,6 @@ It achieves the following results on the test set:
23
  - Recall: 0.722477
24
  - F1: 0.742925
25
 
26
-
27
  ## Model Usage
28
  You can access the model with huggingface's `transformers` as follows:
29
 
@@ -64,6 +63,18 @@ def inference(abstract: str):
64
  claims = inference(abstract) # string of claim joining with \n
65
  ```
66
 
 
 
 
 
 
 
 
 
 
 
 
 
67
  ## Training procedure
68
 
69
  ### Training Hyperparameters
@@ -77,8 +88,6 @@ n_epochs: 6
77
 
78
  ### Training results
79
 
80
- 0.038000 0.007086 0.997964 0.993499 0.995656 0.991350
81
-
82
  | Training Loss | Step | Validation Loss | Accuracy | F1 | Precision | Recall |
83
  |:-------------:|:----:|:---------------:|:--------:|:--------:|:---------:|:--------:|
84
  | 0.038000 | 3996 | 0.007086 | 0.997964 | 0.993499 | 0.995656 | 0.991350 |
 
23
  - Recall: 0.722477
24
  - F1: 0.742925
25
 
 
26
  ## Model Usage
27
  You can access the model with huggingface's `transformers` as follows:
28
 
 
63
  claims = inference(abstract) # string of claim joining with \n
64
  ```
65
 
66
+ ## Intended usage
67
+ Takes in a statement and classifies as Claim (1) or Null (0).
68
+ Here are some examples -
69
+
70
+ - {'text': 'We consistently found that participants selectively chose to learn that bad (good) things happened to bad (good) people (Studies 1 to 7) that is, they selectively exposed themselves to deserved outcomes.',
71
+ 'label': 1 (Claim)}
72
+ - {'text': 'Members of higher status groups generalize characteristics of their ingroup to superordinate categories that serve as a frame of reference for comparisons with outgroups (ingroup projection).',
73
+ 'label': 0 (Null)}
74
+ - {'text':Motivational Interviewing helped the goal progress of those participants who, at pre-screening, reported engaging in many individual pro-environmental behaviors, but the more directive approach worked better for those participants who were less ready to change.
75
+ 'label': 1 (Claim)}
76
+
77
+
78
  ## Training procedure
79
 
80
  ### Training Hyperparameters
 
88
 
89
  ### Training results
90
 
 
 
91
  | Training Loss | Step | Validation Loss | Accuracy | F1 | Precision | Recall |
92
  |:-------------:|:----:|:---------------:|:--------:|:--------:|:---------:|:--------:|
93
  | 0.038000 | 3996 | 0.007086 | 0.997964 | 0.993499 | 0.995656 | 0.991350 |