qbao775 commited on
Commit
2939e1a
1 Parent(s): 1949869

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +26 -0
README.md CHANGED
@@ -23,6 +23,32 @@ Project: https://github.com/Strong-AI-Lab/Logical-Equivalence-driven-AMR-Data-Au
23
  Leaderboard: https://eval.ai/web/challenges/challenge-page/503/leaderboard/1347
24
 
25
  In this repository, we trained the DeBERTa-V2-XXLarge on the sentence pair constructed by our AMR-LE. We use AMR with two logical equivalence laws `(Contraposition law, Double negation law)` to construct two different logical equivalence/inequivalence sentences.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
26
  ## How to load the model weight?
27
  ```
28
  from transformers import AutoModel
 
23
  Leaderboard: https://eval.ai/web/challenges/challenge-page/503/leaderboard/1347
24
 
25
  In this repository, we trained the DeBERTa-V2-XXLarge on the sentence pair constructed by our AMR-LE. We use AMR with two logical equivalence laws `(Contraposition law, Double negation law)` to construct two different logical equivalence/inequivalence sentences.
26
+ ## How to interact model in this web page?
27
+ Some test examples that you may copy and paste them into the right side user input area.
28
+ The expected answer for the following example is they are logically inequivalent which is 0. Use constraposition law `(If A then B <=> If not B then not A)` to show that following example is false.
29
+ ```
30
+ If Alice is happy, then Bob is smart.
31
+ If Alice is not happy, then Bob is smart.
32
+ ```
33
+
34
+ The expected answer for the following example is they are logically equivalent which is 1. Use constraposition law `(If A then B <=> If not B then not A)` to show that following example is true.
35
+ ```
36
+ If Alice is happy, then Bob is smart.
37
+ If Bob is not smart, then Alice is not happy.
38
+ ```
39
+
40
+ The expected answer for the following example is they are logically inequivalent which is 0. Use double negation law `(A <=> not not A)` to show that following example is false.
41
+ ```
42
+ Alice is happy.
43
+ Alice is not happy.
44
+ ```
45
+
46
+ The expected answer for the following example is they are logically equivalent which is 1. Use constraposition law `(A <=> not not A)` to show that following example is true.
47
+ ```
48
+ Alice is happy.
49
+ Alice is not sad.
50
+ ```
51
+
52
  ## How to load the model weight?
53
  ```
54
  from transformers import AutoModel