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,19 @@
{
"title": "Console Tooltips",
"description": "Console tooltip settings.",
"jupyter.lab.shortcuts": [
{
"command": "tooltip:dismiss",
"keys": ["Escape"],
"selector": "body.jp-mod-tooltip .jp-CodeConsole-promptCell"
},
{
"command": "tooltip:launch-console",
"keys": ["Shift Tab"],
"selector": ".jp-CodeConsole-promptCell .jp-InputArea-editor:not(.jp-mod-has-primary-selection):not(.jp-mod-in-leading-whitespace)"
}
],
"properties": {},
"additionalProperties": false,
"type": "object"
}

View File

@@ -0,0 +1,14 @@
{
"title": "File Editor Tooltips",
"description": "File editor tooltip settings.",
"jupyter.lab.shortcuts": [
{
"command": "tooltip:launch-file",
"keys": ["Shift Tab"],
"selector": ".jp-FileEditor .jp-CodeMirrorEditor:not(.jp-mod-has-primary-selection):not(.jp-mod-in-leading-whitespace)"
}
],
"properties": {},
"additionalProperties": false,
"type": "object"
}

View File

@@ -0,0 +1,19 @@
{
"title": "Notebook Tooltips",
"description": "Notebook tooltip settings.",
"jupyter.lab.shortcuts": [
{
"command": "tooltip:dismiss",
"keys": ["Escape"],
"selector": "body.jp-mod-tooltip .jp-Notebook"
},
{
"command": "tooltip:launch-notebook",
"keys": ["Shift Tab"],
"selector": ".jp-Notebook.jp-mod-editMode .jp-InputArea-editor:not(.jp-mod-has-primary-selection):not(.jp-mod-in-leading-whitespace):not(.jp-mod-completer-active)"
}
],
"properties": {},
"additionalProperties": false,
"type": "object"
}

View File

@@ -0,0 +1,66 @@
{
"name": "@jupyterlab/tooltip-extension",
"version": "4.5.1",
"description": "JupyterLab - Tooltip Extension",
"homepage": "https://github.com/jupyterlab/jupyterlab",
"bugs": {
"url": "https://github.com/jupyterlab/jupyterlab/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/jupyterlab/jupyterlab.git"
},
"license": "BSD-3-Clause",
"author": "Project Jupyter",
"sideEffects": [
"style/**/*.css",
"style/index.js"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"style": "style/index.css",
"directories": {
"lib": "lib/"
},
"files": [
"lib/*.d.ts",
"lib/*.js.map",
"lib/*.js",
"schema/*.json",
"style/**/*.css",
"style/index.js",
"src/**/*.{ts,tsx}"
],
"scripts": {
"build": "tsc -b",
"clean": "rimraf lib && rimraf tsconfig.tsbuildinfo",
"watch": "tsc -b --watch"
},
"dependencies": {
"@jupyterlab/application": "^4.5.1",
"@jupyterlab/codeeditor": "^4.5.1",
"@jupyterlab/console": "^4.5.1",
"@jupyterlab/coreutils": "^6.5.1",
"@jupyterlab/fileeditor": "^4.5.1",
"@jupyterlab/notebook": "^4.5.1",
"@jupyterlab/rendermime": "^4.5.1",
"@jupyterlab/services": "^7.5.1",
"@jupyterlab/tooltip": "^4.5.1",
"@jupyterlab/translation": "^4.5.1",
"@lumino/algorithm": "^2.0.4",
"@lumino/coreutils": "^2.2.2",
"@lumino/widgets": "^2.7.2"
},
"devDependencies": {
"rimraf": "~5.0.5",
"typescript": "~5.5.4"
},
"publishConfig": {
"access": "public"
},
"jupyterlab": {
"extension": true,
"schemaDir": "schema"
},
"styleModule": "style/index.js"
}