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,297 @@
{
"jupyter.lab.setting-icon": "ui-components:folder",
"jupyter.lab.setting-icon-label": "File Browser",
"jupyter.lab.menus": {
"main": [
{
"id": "jp-mainmenu-file",
"items": [
{
"type": "separator",
"rank": 1
},
{
"command": "filebrowser:open-path",
"rank": 1
},
{
"command": "filebrowser:open-url",
"rank": 1
}
]
},
{
"id": "jp-mainmenu-view",
"items": [
{
"command": "filebrowser:toggle-hidden-files",
"rank": 9.95
}
]
}
],
"context": [
{
"type": "separator",
"selector": ".jp-DirListing-content",
"rank": 0
},
{
"command": "filebrowser:open",
"selector": ".jp-DirListing-item[data-isdir]",
"rank": 1
},
{
"type": "separator",
"selector": ".jp-DirListing-item[data-isdir]",
"rank": 4
},
{
"command": "filebrowser:rename",
"selector": ".jp-DirListing-item[data-isdir]",
"rank": 5
},
{
"command": "filebrowser:delete",
"selector": ".jp-DirListing-item[data-isdir]",
"rank": 6
},
{
"command": "filebrowser:cut",
"selector": ".jp-DirListing-item[data-isdir]",
"rank": 7
},
{
"command": "filebrowser:copy",
"selector": ".jp-DirListing-item[data-isdir]",
"rank": 8
},
{
"command": "filebrowser:paste",
"selector": ".jp-DirListing-content",
"rank": 8.5
},
{
"command": "filebrowser:duplicate",
"selector": ".jp-DirListing-item[data-isdir=\"false\"]",
"rank": 9
},
{
"type": "separator",
"selector": ".jp-DirListing-item[data-isdir]",
"rank": 10
},
{
"command": "filebrowser:shutdown",
"selector": ".jp-DirListing-item[data-isdir=\"false\"].jp-mod-running",
"rank": 11
},
{
"type": "separator",
"selector": ".jp-DirListing-item[data-isdir]",
"rank": 12
},
{
"command": "filebrowser:copy-path",
"selector": ".jp-DirListing-item[data-isdir]",
"rank": 14
},
{
"command": "filebrowser:toggle-last-modified",
"selector": ".jp-DirListing-header",
"rank": 14
},
{
"command": "filebrowser:toggle-file-size",
"selector": ".jp-DirListing-header",
"rank": 15
},
{
"command": "filebrowser:toggle-file-checkboxes",
"selector": ".jp-DirListing-header",
"rank": 16
},
{
"command": "filebrowser:toggle-sort-notebooks-first",
"selector": ".jp-DirListing-header",
"rank": 17
},
{
"command": "filebrowser:share-main",
"selector": ".jp-DirListing-item[data-isdir]",
"rank": 17
},
{
"type": "separator",
"selector": ".jp-DirListing-item[data-isdir]",
"rank": 50
},
{
"command": "filebrowser:create-new-file",
"selector": ".jp-DirListing-content",
"rank": 51
},
{
"command": "filebrowser:create-new-directory",
"selector": ".jp-DirListing-content",
"rank": 55
}
]
},
"title": "File Browser",
"description": "File Browser settings.",
"jupyter.lab.shortcuts": [
{
"command": "filebrowser:go-up",
"keys": ["Backspace"],
"selector": ".jp-DirListing:focus"
},
{
"command": "filebrowser:go-up",
"keys": ["Backspace"],
"selector": ".jp-DirListing-content .jp-DirListing-itemText"
},
{
"command": "filebrowser:delete",
"keys": ["Delete"],
"selector": ".jp-DirListing-content .jp-DirListing-itemText"
},
{
"command": "filebrowser:cut",
"keys": ["Accel X"],
"selector": ".jp-DirListing-content .jp-DirListing-itemText"
},
{
"command": "filebrowser:copy",
"keys": ["Accel C"],
"selector": ".jp-DirListing-content .jp-DirListing-itemText"
},
{
"command": "filebrowser:paste",
"keys": ["Accel V"],
"selector": ".jp-DirListing-content .jp-DirListing-itemText"
},
{
"command": "filebrowser:rename",
"keys": ["F2"],
"selector": ".jp-DirListing-content .jp-DirListing-itemText"
},
{
"command": "filebrowser:duplicate",
"keys": ["Accel D"],
"selector": ".jp-DirListing-content .jp-DirListing-itemText"
},
{
"command": "filebrowser:select-all",
"keys": ["Accel A"],
"selector": ".jp-DirListing-content .jp-DirListing-itemText"
}
],
"properties": {
"navigateToCurrentDirectory": {
"type": "boolean",
"title": "Navigate to current folder",
"description": "Whether to automatically navigate to a document's current folder",
"default": false
},
"useFuzzyFilter": {
"type": "boolean",
"title": "Filter on file name with a fuzzy search",
"description": "Whether to apply fuzzy algorithm while filtering on file names",
"default": true
},
"filterDirectories": {
"type": "boolean",
"title": "Filter folders",
"description": "Whether to apply the search on folders",
"default": true
},
"showLastModifiedColumn": {
"type": "boolean",
"title": "Show last modified column",
"description": "Whether to show the last modified column",
"default": true
},
"showFileSizeColumn": {
"type": "boolean",
"title": "Show file size column",
"description": "Whether to show the file size column",
"default": false
},
"showHiddenFiles": {
"type": "boolean",
"title": "Show hidden files",
"description": "Whether to show hidden files. The server parameter `ContentsManager.allow_hidden` must be set to `True` to display hidden files.",
"default": false
},
"showFileCheckboxes": {
"type": "boolean",
"title": "Use checkboxes to select items",
"description": "Whether to show checkboxes next to files and folders",
"default": false
},
"showFullPath": {
"type": "boolean",
"title": "Show full path in browser bread crumbs",
"description": "Whether to show full path in browser bread crumbs",
"default": false
},
"sortNotebooksFirst": {
"type": "boolean",
"title": "When sorting by name, group notebooks before other files",
"description": "Whether to group the notebooks away from files",
"default": false
},
"singleClickNavigation": {
"type": "boolean",
"title": "Navigate files and directories with single click",
"description": "Whether to allow single click selection on file browser items",
"default": false
},
"autoOpenUploads": {
"type": "boolean",
"title": "Auto-open uploads",
"description": "Automatically open uploaded notebooks and supported files",
"default": true
},
"maxAutoOpenSizeMB": {
"type": "number",
"title": "Max auto-open size",
"description": "Maximum file size (MB) to auto-open files on upload",
"default": 50
},
"allowFileUploads": {
"type": "boolean",
"title": "Allow file uploads",
"description": "Whether to allow uploading files",
"default": true
},
"breadcrumbs": {
"title": "Breadcrumbs",
"description": "Settings related to breadcrumbs display and behavior.",
"type": "object",
"default": {
"minimumLeftItems": 0,
"minimumRightItems": 2
},
"properties": {
"minimumLeftItems": {
"type": "number",
"title": "Minimum breadcrumbs left items",
"description": "Minimum number of directory items to display on the left side of the breadcrumbs ellipsis",
"default": 0,
"minimum": 0
},
"minimumRightItems": {
"type": "number",
"title": "Minimum breadcrumbs right items",
"description": "Minimum number of directory items to display on the right side of the breadcrumbs ellipsis",
"default": 2,
"minimum": 0
}
}
}
},
"additionalProperties": false,
"type": "object"
}

View File

@@ -0,0 +1,21 @@
{
"title": "File Browser Download",
"description": "File Browser Download settings.",
"jupyter.lab.menus": {
"context": [
{
"command": "filebrowser:download",
"selector": ".jp-DirListing-item[data-isdir=\"false\"]",
"rank": 9
},
{
"command": "filebrowser:copy-download-link",
"selector": ".jp-DirListing-item[data-isdir=\"false\"]",
"rank": 13
}
]
},
"properties": {},
"additionalProperties": false,
"type": "object"
}

View File

@@ -0,0 +1,16 @@
{
"title": "File Browser Open Browser Tab",
"description": "File Browser Open Browser Tab settings.",
"jupyter.lab.menus": {
"context": [
{
"command": "filebrowser:open-browser-tab",
"selector": ".jp-DirListing-item[data-isdir=\"false\"]",
"rank": 1.6
}
]
},
"properties": {},
"additionalProperties": false,
"type": "object"
}

View File

@@ -0,0 +1,21 @@
{
"title": "File Browser Open With",
"description": "File Browser Open With settings.",
"jupyter.lab.menus": {
"context": [
{
"type": "submenu",
"selector": ".jp-DirListing-item[data-isdir=\"false\"]",
"rank": 1.3,
"submenu": {
"id": "jp-contextmenu-open-with",
"label": "Open With",
"items": []
}
}
]
},
"properties": {},
"additionalProperties": false,
"type": "object"
}

View File

@@ -0,0 +1,69 @@
{
"name": "@jupyterlab/filebrowser-extension",
"version": "4.5.1",
"description": "JupyterLab - Filebrowser Widget 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/apputils": "^4.6.1",
"@jupyterlab/coreutils": "^6.5.1",
"@jupyterlab/docmanager": "^4.5.1",
"@jupyterlab/docregistry": "^4.5.1",
"@jupyterlab/filebrowser": "^4.5.1",
"@jupyterlab/services": "^7.5.1",
"@jupyterlab/settingregistry": "^4.5.1",
"@jupyterlab/statedb": "^4.5.1",
"@jupyterlab/statusbar": "^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/disposable": "^2.1.5",
"@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"
}

View File

@@ -0,0 +1,124 @@
{
"title": "File Browser Widget",
"description": "File Browser widget settings.",
"jupyter.lab.toolbars": {
"FileBrowser": [
{
"name": "new-directory",
"command": "filebrowser:create-new-directory",
"rank": 10
},
{ "name": "uploader", "rank": 20 },
{ "name": "refresh", "command": "filebrowser:refresh", "rank": 30 },
{
"name": "toggle-file-filter",
"command": "filebrowser:toggle-file-filter",
"rank": 40
}
]
},
"jupyter.lab.menus": {
"main": [
{
"id": "jp-mainmenu-view",
"items": [
{
"command": "filebrowser:toggle-main",
"rank": 1
}
]
},
{
"id": "jp-mainmenu-settings",
"items": [
{
"type": "separator",
"rank": 5
},
{
"command": "filebrowser:toggle-navigate-to-current-directory",
"rank": 5
},
{
"type": "separator",
"rank": 5
}
]
}
]
},
"jupyter.lab.shortcuts": [
{
"command": "filebrowser:toggle-main",
"keys": ["Accel Shift F"],
"selector": "body"
}
],
"jupyter.lab.transform": true,
"properties": {
"toolbar": {
"title": "File browser toolbar items",
"description": "Note: To disable a toolbar item,\ncopy it to User Preferences and add the\n\"disabled\" key. The following example will disable the uploader button:\n{\n \"toolbar\": [\n {\n \"name\": \"uploader\",\n \"disabled\": true\n }\n ]\n}\n\nToolbar description:",
"items": {
"$ref": "#/definitions/toolbarItem"
},
"type": "array",
"default": []
}
},
"additionalProperties": false,
"type": "object",
"definitions": {
"toolbarItem": {
"properties": {
"name": {
"title": "Unique name",
"type": "string"
},
"args": {
"title": "Command arguments",
"type": "object"
},
"command": {
"title": "Command id",
"type": "string",
"default": ""
},
"disabled": {
"title": "Whether the item is ignored or not",
"type": "boolean",
"default": false
},
"icon": {
"title": "Item icon id",
"description": "If defined, it will override the command icon",
"type": "string"
},
"label": {
"title": "Item label",
"description": "If defined, it will override the command label",
"type": "string"
},
"caption": {
"title": "Item caption",
"description": "If defined, it will override the command caption",
"type": "string"
},
"type": {
"title": "Item type",
"type": "string",
"enum": ["command", "spacer"]
},
"rank": {
"title": "Item rank",
"type": "number",
"minimum": 0,
"default": 50
}
},
"required": ["name"],
"additionalProperties": false,
"type": "object"
}
}
}