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,71 @@
{
"name": "@jupyterlab/shortcuts-extension",
"version": "5.3.1",
"description": "JupyterLab - Shortcuts 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,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",
"style/**/*.{css,eot,gif,html,jpg,json,png,svg,woff2,ttf}",
"style/index.js",
"schema/*.json",
"src/**/*.{ts,tsx}"
],
"scripts": {
"build": "tsc -b",
"build:test": "tsc --build tsconfig.test.json",
"clean": "rimraf lib && rimraf tsconfig.tsbuildinfo",
"test": "jest",
"test:cov": "jest --collect-coverage",
"test:debug": "node --inspect-brk ../../node_modules/.bin/jest --runInBand",
"test:debug:watch": "node --inspect-brk ../../node_modules/.bin/jest --runInBand --watch",
"watch": "tsc -b --watch"
},
"dependencies": {
"@jupyterlab/application": "^4.5.1",
"@jupyterlab/settingregistry": "^4.5.1",
"@jupyterlab/translation": "^4.5.1",
"@jupyterlab/ui-components": "^4.5.1",
"@lumino/algorithm": "^2.0.4",
"@lumino/commands": "^2.3.3",
"@lumino/coreutils": "^2.2.2",
"@lumino/disposable": "^2.1.5",
"@lumino/domutils": "^2.0.4",
"@lumino/keyboard": "^2.0.4",
"@lumino/signaling": "^2.1.5",
"react": "^18.2.0"
},
"devDependencies": {
"@jupyterlab/testing": "^4.5.1",
"@types/jest": "^29.2.0",
"jest": "^29.2.0",
"rimraf": "~5.0.5",
"typescript": "~5.5.4"
},
"publishConfig": {
"access": "public"
},
"jupyterlab": {
"extension": true,
"schemaDir": "schema"
},
"styleModule": "style/index.js"
}

View File

@@ -0,0 +1,74 @@
{
"jupyter.lab.setting-icon": "ui-components:keyboard",
"jupyter.lab.setting-icon-label": "Keyboard Shortcuts",
"jupyter.lab.transform": true,
"title": "Keyboard Shortcuts",
"description": "Keyboard shortcut settings.",
"jupyter.lab.menus": {
"context": [
{
"command": "shortcuts:edit-keybinding",
"selector": ".jp-Shortcuts-ShortcutKeysContainer",
"rank": 0
},
{
"command": "shortcuts:delete-keybinding",
"selector": ".jp-Shortcuts-ShortcutKeysContainer",
"rank": 1
},
{
"command": "shortcuts:add-keybinding",
"selector": ".jp-Shortcuts-Row",
"rank": 2
},
{
"command": "shortcuts:toggle-selectors",
"selector": ".jp-Shortcuts-Top",
"rank": 3
},
{
"command": "shortcuts:reset-all",
"selector": ".jp-Shortcuts-Top",
"rank": 4
}
]
},
"type": "object",
"additionalProperties": false,
"properties": {
"shortcuts": {
"description": "The list of keyboard shortcuts.",
"items": { "$ref": "#/definitions/shortcut" },
"type": "array",
"default": []
}
},
"definitions": {
"shortcut": {
"properties": {
"args": { "type": "object" },
"command": { "type": "string" },
"keys": {
"items": { "type": "string" },
"type": "array"
},
"winKeys": {
"items": { "type": "string" },
"type": "array"
},
"macKeys": {
"items": { "type": "string" },
"type": "array"
},
"linuxKeys": {
"items": { "type": "string" },
"type": "array"
},
"selector": { "type": "string" },
"preventDefault": { "type": "boolean" }
},
"required": ["command", "keys", "selector"],
"type": "object"
}
}
}