Last active
September 15, 2018 19:15
-
-
Save tokestermw/ffba2c56383078d62cda1e62a88bd6ce to your computer and use it in GitHub Desktop.
Revisions
-
tokestermw revised this gist
Sep 15, 2018 . 1 changed file with 3 additions and 3 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -33,6 +33,6 @@ v2 | O | B | ERRANT for B | | O | O | IGNORE | * TODO: How to include identity vs. correction?l * TODO: How to include ACCEPT vs. REJECT? * TODO: What about partially correct spans? -
tokestermw revised this gist
Sep 15, 2018 . 1 changed file with 18 additions and 18 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -9,29 +9,29 @@ v1 | Real | Predicted | Verdict | ----- | ------ | ----- | | A | A | TP for A | | A | B | FP for A | | A | O | FN for A | | B | A | FP for B | | B | B | TP for B | | B | O | FN for B | | O | A | FP for O | | O | B | FP for O | | O | O | IGNORE | v2 | Real | Predicted | Verdict | ----- | ------ | ----- | | A | A | TP for A | | A | B | FP for A | | A | O | FN for A | | B | A | FP for B | | B | B | TP for B | | B | O | FN for B | | O | A | ERRANT for A | | O | B | ERRANT for B | | O | O | IGNORE | TODO: How to include identity vs. correction?l TODO: How to include ACCEPT vs. REJECT? -
tokestermw revised this gist
Sep 15, 2018 . 1 changed file with 5 additions and 3 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -1,7 +1,9 @@ Where `A` is a class (e.g. definite article), and `B` is another class (e.g. indefinite article). `O` is the null class. ``` The cat had a dog . A O O B O O ``` v1 -
tokestermw revised this gist
Sep 15, 2018 . 1 changed file with 4 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,7 @@ Where `A` is a class (e.g. definite article), and `B` is another class (e.g. indefinite article). `O` is the null class where no prediction is made. I have a dog . O O B O O v1 -
tokestermw revised this gist
Sep 15, 2018 . 1 changed file with 20 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -1,3 +1,5 @@ Where `A` is a class (e.g. definite article), and `B` is another class (e.g. indefinite article). `O` is the null class where there is no class. v1 | Real | Predicted | Verdict @@ -11,3 +13,21 @@ v1 | O | A_hat | FP for O | | O | B_hat | FP for O | | O | O_hat | IGNORE | v2 | Real | Predicted | Verdict | ----- | ------ | ----- | | A | A_hat | TP for A | | A | B_hat | FP for A | | A | O_hat | FN for A | | B | A_hat | FP for B | | B | B_hat | TP for B | | B | O_hat | FN for B | | O | A_hat | ERRANT for A | | O | B_hat | ERRANT for B | | O | O_hat | IGNORE | TODO: How to include identity vs. correction?l TODO: How to include ACCEPT vs. REJECT? TODO: What about partially correct spans? -
tokestermw revised this gist
Sep 15, 2018 . 1 changed file with 7 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -1,8 +1,13 @@ v1 | Real | Predicted | Verdict | ----- | ------ | ----- | | A | A_hat | TP for A | | A | B_hat | FP for A | | A | O_hat | FN for A | | B | A_hat | FP for B | | B | B_hat | TP for B | | B | O_hat | FN for B | | O | A_hat | FP for O | | O | B_hat | FP for O | | O | O_hat | IGNORE | -
tokestermw created this gist
Aug 9, 2018 .There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,8 @@ | Real | Predicted | Verdict | ----- | ------ | ----- | | A | A_hat | TP for A | | A | B_hat | FP for A | | A | O_hat | FN for A | | O | A_hat | FP for O | | B | A_hat | FP for B | | O | O_hat | IGNORE |