-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* map to original doc * optimize speed, debug evidence * debug to make sure restore the text * minor bug for demo * minor * udpate to 4o * Update result.html * Update .gitignore * update web inference * update the file * better output format with dataclass * adaptation to new data structure * Update LibrAI_fc.html --------- Co-authored-by: Xudong Han <[email protected]>
- Loading branch information
Showing
33 changed files
with
1,852 additions
and
340 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ exclude: | | |
factcheck/utils/prompt/| | ||
demo_data/| | ||
templates/| | ||
static/| | ||
assets/| | ||
fig/ | ||
) | ||
repos: | ||
|
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
.controversial-span { | ||
padding: 2px; | ||
text-decoration: underline wavy rgba(255, 197, 61, 0.996); | ||
border-bottom: 2px solid rgba(255, 197, 61, 0.996); | ||
cursor: pointer; | ||
} | ||
|
||
.controversial-span:hover { | ||
padding: 2px; | ||
text-decoration: underline wavy rgba(255, 197, 61, 0.996); | ||
border-bottom: 2px solid rgba(255, 197, 61, 0.996); | ||
background: rgb(217, 217, 217); | ||
cursor: pointer; | ||
} | ||
|
||
.refutes-span { | ||
padding: 2px; | ||
text-decoration: underline wavy rgba(209, 2, 0, 0.533); | ||
border-bottom: 2px solid rgba(209, 2, 0, 0.533); | ||
cursor: pointer; | ||
} | ||
|
||
.refutes-span:hover { | ||
padding: 2px; | ||
text-decoration: underline wavy rgba(209, 2, 0, 0.533); | ||
border-bottom: 2px solid rgba(209, 2, 0, 0.533); | ||
background: rgb(217, 217, 217); | ||
cursor: pointer; | ||
} | ||
|
||
.support-span { | ||
padding: 2px; | ||
text-decoration: none; | ||
border-bottom: 2px solid rgba(255, 197, 61, 0); | ||
cursor: pointer; | ||
} | ||
|
||
.support-span:hover { | ||
padding: 2px; | ||
text-decoration: none; | ||
border-bottom: 2px solid rgba(255, 197, 61, 0); | ||
background: rgb(217, 217, 217); | ||
cursor: pointer; | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Large diffs are not rendered by default.
Oops, something went wrong.
Oops, something went wrong.