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,37 @@
{
"title": "Workspace Indicator",
"description": "Workspace Indicator Settings",
"jupyter.lab.toolbars": {
"TopBar": [
{
"name": "workspaceIndicator",
"rank": 1000,
"disabled": true
}
]
},
"jupyter.lab.menus": {
"main": [
{
"id": "jp-mainmenu-view",
"items": [
{
"type": "submenu",
"submenu": {
"id": "jp-mainmenu-view-appearance",
"items": [
{
"command": "workspace-indicator:toggle",
"rank": 16
}
]
}
}
]
}
]
},
"properties": {},
"additionalProperties": false,
"type": "object"
}

View File

@@ -0,0 +1,70 @@
{
"title": "Workspaces Menu",
"description": "Workspaces Menu",
"jupyter.lab.menus": {
"main": [
{
"id": "jp-mainmenu-file",
"items": [
{
"type": "submenu",
"rank": 10,
"submenu": {
"id": "jp-mainmenu-file-workspaces",
"label": "Workspaces",
"items": [
{
"command": "workspace-ui:open",
"rank": 0
},
{
"command": "workspace-ui:create-new",
"rank": 1
},
{
"command": "workspace-ui:clone",
"rank": 2
},
{
"command": "workspace-ui:rename",
"rank": 3
},
{
"command": "workspace-ui:save",
"rank": 4
},
{
"command": "workspace-ui:save-as",
"rank": 5
},
{
"command": "workspace-ui:import",
"rank": 6
},
{
"command": "workspace-ui:export",
"rank": 7
},
{
"type": "separator",
"rank": 8
},
{
"command": "workspace-ui:reset",
"rank": 9
},
{
"command": "workspace-ui:delete",
"rank": 10
}
]
}
}
]
}
]
},
"properties": {},
"additionalProperties": false,
"type": "object"
}

View File

@@ -0,0 +1,64 @@
{
"name": "@jupyterlab/workspaces-extension",
"version": "4.5.1",
"description": "JupyterLab Extension providing UI for workspace management",
"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/**/*"
],
"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}",
"schema/*.json",
"style/**/*.{css,eot,gif,html,jpg,json,png,svg,woff2,ttf}",
"src/**/*.{ts,tsx}",
"style/index.js"
],
"scripts": {
"build": "tsc -b",
"build:test": "tsc --build tsconfig.test.json",
"clean": "rimraf lib tsconfig.tsbuildinfo",
"watch": "tsc -b --watch"
},
"dependencies": {
"@jupyterlab/application": "^4.5.1",
"@jupyterlab/apputils": "^4.6.1",
"@jupyterlab/coreutils": "^6.5.1",
"@jupyterlab/filebrowser": "^4.5.1",
"@jupyterlab/running": "^4.5.1",
"@jupyterlab/services": "^7.5.1",
"@jupyterlab/settingregistry": "^4.5.1",
"@jupyterlab/statedb": "^4.5.1",
"@jupyterlab/translation": "^4.5.1",
"@jupyterlab/ui-components": "^4.5.1",
"@jupyterlab/workspaces": "^4.5.1",
"react": "^18.2.0"
},
"devDependencies": {
"@types/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,51 @@
{
"title": "Workspaces Sidebar",
"description": "Workspaces Sidebar",
"jupyter.lab.menus": {
"context": [
{
"command": "workspace-ui:clone",
"selector": ".jp-RunningSessions-item.jp-mod-workspace",
"rank": 0
},
{
"command": "workspace-ui:rename",
"selector": ".jp-RunningSessions-item.jp-mod-workspace",
"rank": 1
},
{
"command": "workspace-ui:reset",
"selector": ".jp-RunningSessions-item.jp-mod-workspace",
"rank": 2
},
{
"command": "workspace-ui:delete",
"selector": ".jp-RunningSessions-item.jp-mod-workspace",
"rank": 3
},
{
"command": "workspace-ui:export",
"selector": ".jp-RunningSessions-item.jp-mod-workspace",
"rank": 4
},
{
"type": "separator",
"selector": ".jp-RunningSessions-item.jp-mod-workspace",
"rank": 5
},
{
"command": "workspace-ui:import",
"selector": ".jp-RunningSessions-section:has(.jp-mod-workspace)",
"rank": 6
},
{
"command": "workspace-ui:create-new",
"selector": ".jp-RunningSessions-section:has(.jp-mod-workspace)",
"rank": 7
}
]
},
"properties": {},
"additionalProperties": false,
"type": "object"
}