-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: improved category partitioning Category partitions now work as expected and can be seen in the playground as well as being used by the chart webpage * feat(chart): various improvements The chart now show more details on the data splits (training, validation and test) without having to pull data from 3 sources re #20 * refactor(index): wip
- Loading branch information
1 parent
22b48aa
commit 2a41f1b
Showing
4 changed files
with
237 additions
and
24 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,170 @@ | ||
{ | ||
"blog": { | ||
"overall": 3, | ||
"test": 1, | ||
"validation": 0, | ||
"train": 2 | ||
}, | ||
"bug": { | ||
"overall": 20, | ||
"test": 3, | ||
"validation": 1, | ||
"train": 16 | ||
}, | ||
"business": { | ||
"overall": 3, | ||
"test": 1, | ||
"validation": 0, | ||
"train": 2 | ||
}, | ||
"code": { | ||
"overall": 57, | ||
"test": 6, | ||
"validation": 8, | ||
"train": 43 | ||
}, | ||
"content": { | ||
"overall": 2, | ||
"test": 1, | ||
"validation": 0, | ||
"train": 1 | ||
}, | ||
"design": { | ||
"overall": 11, | ||
"test": 0, | ||
"validation": 2, | ||
"train": 9 | ||
}, | ||
"doc": { | ||
"overall": 23, | ||
"test": 4, | ||
"validation": 4, | ||
"train": 15 | ||
}, | ||
"eventOrganizing": { | ||
"overall": 4, | ||
"test": 0, | ||
"validation": 1, | ||
"train": 3 | ||
}, | ||
"example": { | ||
"overall": 2, | ||
"test": 1, | ||
"validation": 1, | ||
"train": 0 | ||
}, | ||
"financial": { | ||
"overall": 4, | ||
"test": 1, | ||
"validation": 1, | ||
"train": 2 | ||
}, | ||
"fundingFinding": { | ||
"overall": 2, | ||
"test": 0, | ||
"validation": 0, | ||
"train": 2 | ||
}, | ||
"ideas": { | ||
"overall": 26, | ||
"test": 1, | ||
"validation": 4, | ||
"train": 21 | ||
}, | ||
"infra": { | ||
"overall": 14, | ||
"test": 6, | ||
"validation": 2, | ||
"train": 6 | ||
}, | ||
"maintenance": { | ||
"overall": 30, | ||
"test": 4, | ||
"validation": 2, | ||
"train": 24 | ||
}, | ||
"null": { | ||
"overall": 197, | ||
"test": 27, | ||
"validation": 34, | ||
"train": 136 | ||
}, | ||
"platform": { | ||
"overall": 23, | ||
"test": 7, | ||
"validation": 5, | ||
"train": 11 | ||
}, | ||
"plugin": { | ||
"overall": 4, | ||
"test": 1, | ||
"validation": 0, | ||
"train": 3 | ||
}, | ||
"projectManagement": { | ||
"overall": 6, | ||
"test": 0, | ||
"validation": 1, | ||
"train": 5 | ||
}, | ||
"question": { | ||
"overall": 5, | ||
"test": 0, | ||
"validation": 1, | ||
"train": 4 | ||
}, | ||
"review": { | ||
"overall": 3, | ||
"test": 0, | ||
"validation": 1, | ||
"train": 2 | ||
}, | ||
"security": { | ||
"overall": 10, | ||
"test": 2, | ||
"validation": 1, | ||
"train": 7 | ||
}, | ||
"talk": { | ||
"overall": 2, | ||
"test": 0, | ||
"validation": 0, | ||
"train": 2 | ||
}, | ||
"test": { | ||
"overall": 12, | ||
"test": 3, | ||
"validation": 0, | ||
"train": 9 | ||
}, | ||
"tool": { | ||
"overall": 13, | ||
"test": 2, | ||
"validation": 3, | ||
"train": 8 | ||
}, | ||
"translation": { | ||
"overall": 1, | ||
"test": 1, | ||
"validation": 0, | ||
"train": 0 | ||
}, | ||
"tutorial": { | ||
"overall": 3, | ||
"test": 1, | ||
"validation": 1, | ||
"train": 1 | ||
}, | ||
"userTesting": { | ||
"overall": 3, | ||
"test": 0, | ||
"validation": 0, | ||
"train": 3 | ||
}, | ||
"video": { | ||
"overall": 3, | ||
"test": 0, | ||
"validation": 0, | ||
"train": 3 | ||
} | ||
} |
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
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