Add EmoSet training and evaluation

This commit is contained in:
zin
2026-01-13 10:00:04 +00:00
parent ea505b4f9c
commit 00a8472c8d
547 changed files with 62318 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
{
"title": "Kernels",
"description": "Kernels and kernel sessions settings",
"jupyter.lab.setting-icon": "ui-components:kernel",
"jupyter.lab.setting-icon-label": "Kernel",
"additionalProperties": false,
"properties": {
"showStatusBarItem": {
"type": "boolean",
"title": "Show the status bar item",
"description": "Whether to show the running kernels item in the status bar",
"default": true
},
"commsOverSubshells": {
"type": "string",
"title": "Kernel Comms over subshells",
"description": "Whether comm messages should be sent to kernel subshells, if the kernel supports it.",
"default": "perCommTarget",
"oneOf": [
{ "const": "disabled", "title": "Disabled" },
{ "const": "perComm", "title": "One subshell per comm" },
{ "const": "perCommTarget", "title": "One subshell per comm-target" }
]
}
},
"type": "object"
}