Add EmoSet training and evaluation
This commit is contained in:
@@ -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"
|
||||
}
|
||||
@@ -0,0 +1,53 @@
|
||||
{
|
||||
"title": "Notifications",
|
||||
"description": "Notifications settings.",
|
||||
"jupyter.lab.setting-icon": "ui-components:bell",
|
||||
"jupyter.lab.menus": {
|
||||
"main": [
|
||||
{
|
||||
"id": "jp-mainmenu-view",
|
||||
"items": [
|
||||
{
|
||||
"type": "separator",
|
||||
"rank": 9.9
|
||||
},
|
||||
{
|
||||
"command": "apputils:display-notifications",
|
||||
"rank": 9.92
|
||||
},
|
||||
{
|
||||
"type": "separator",
|
||||
"rank": 9.99
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"checkForUpdates": {
|
||||
"title": "Check for JupyterLab updates",
|
||||
"description": "Whether to check for newer versions of JupyterLab or not. It requires `fetchNews` to be set to Always (`true`) to be active. If `true`, it will make a request to a website.",
|
||||
"type": "boolean",
|
||||
"default": true
|
||||
},
|
||||
"doNotDisturbMode": {
|
||||
"title": "Silence all notifications",
|
||||
"description": "If `true`, no toast notifications will be automatically displayed.",
|
||||
"type": "boolean",
|
||||
"default": false
|
||||
},
|
||||
"fetchNews": {
|
||||
"title": "Fetch official Jupyter news",
|
||||
"description": "Whether to fetch news from the Jupyter news feed. If Always (`true`), it will make a request to a website.",
|
||||
"type": "string",
|
||||
"oneOf": [
|
||||
{ "const": "true", "title": "Always" },
|
||||
{ "const": "false", "title": "Never" },
|
||||
{ "const": "none", "title": "Ask (None)" }
|
||||
],
|
||||
"default": "none"
|
||||
}
|
||||
},
|
||||
"type": "object"
|
||||
}
|
||||
@@ -0,0 +1,76 @@
|
||||
{
|
||||
"name": "@jupyterlab/apputils-extension",
|
||||
"version": "4.5.1",
|
||||
"description": "JupyterLab - Application Utilities 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/**/*"
|
||||
],
|
||||
"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",
|
||||
"style/*.css",
|
||||
"style/images/*.svg",
|
||||
"schema/*.json",
|
||||
"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/docregistry": "^4.5.1",
|
||||
"@jupyterlab/mainmenu": "^4.5.1",
|
||||
"@jupyterlab/rendermime-interfaces": "^3.13.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",
|
||||
"@jupyterlab/workspaces": "^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/polling": "^2.1.5",
|
||||
"@lumino/widgets": "^2.7.2",
|
||||
"react": "^18.2.0",
|
||||
"react-dom": "^18.2.0",
|
||||
"react-toastify": "^9.0.8"
|
||||
},
|
||||
"devDependencies": {
|
||||
"rimraf": "~5.0.5",
|
||||
"typescript": "~5.5.4"
|
||||
},
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
},
|
||||
"jupyterlab": {
|
||||
"extension": true,
|
||||
"schemaDir": "schema"
|
||||
},
|
||||
"styleModule": "style/index.js"
|
||||
}
|
||||
@@ -0,0 +1,40 @@
|
||||
{
|
||||
"title": "Command Palette",
|
||||
"description": "Command palette settings.",
|
||||
"jupyter.lab.setting-icon": "ui-components:palette",
|
||||
"jupyter.lab.setting-icon-label": "Command Palette",
|
||||
"jupyter.lab.menus": {
|
||||
"main": [
|
||||
{
|
||||
"id": "jp-mainmenu-view",
|
||||
"items": [
|
||||
{
|
||||
"command": "apputils:activate-command-palette",
|
||||
"rank": 0
|
||||
},
|
||||
{
|
||||
"type": "separator",
|
||||
"rank": 0
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"jupyter.lab.shortcuts": [
|
||||
{
|
||||
"command": "apputils:activate-command-palette",
|
||||
"keys": ["Accel Shift C"],
|
||||
"selector": "body"
|
||||
}
|
||||
],
|
||||
"properties": {
|
||||
"modal": {
|
||||
"title": "Modal Command Palette",
|
||||
"description": "Whether the command palette should be modal or in the left panel.",
|
||||
"type": "boolean",
|
||||
"default": true
|
||||
}
|
||||
},
|
||||
"type": "object",
|
||||
"additionalProperties": false
|
||||
}
|
||||
@@ -0,0 +1,31 @@
|
||||
{
|
||||
"title": "Print",
|
||||
"description": "Print settings.",
|
||||
"jupyter.lab.menus": {
|
||||
"main": [
|
||||
{
|
||||
"id": "jp-mainmenu-file",
|
||||
"items": [
|
||||
{
|
||||
"type": "separator",
|
||||
"rank": 98
|
||||
},
|
||||
{
|
||||
"command": "apputils:print",
|
||||
"rank": 98
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"jupyter.lab.shortcuts": [
|
||||
{
|
||||
"command": "apputils:print",
|
||||
"keys": ["Accel P"],
|
||||
"selector": "body"
|
||||
}
|
||||
],
|
||||
"additionalProperties": false,
|
||||
"properties": {},
|
||||
"type": "object"
|
||||
}
|
||||
@@ -0,0 +1,31 @@
|
||||
{
|
||||
"title": "HTML Sanitizer",
|
||||
"description": "HTML Sanitizer settings.",
|
||||
"jupyter.lab.setting-icon": "ui-components:html5",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"allowedSchemes": {
|
||||
"title": "Allowed URL Scheme",
|
||||
"description": "Scheme allowed by the HTML sanitizer.",
|
||||
"type": "array",
|
||||
"uniqueItems": true,
|
||||
"items": {
|
||||
"type": "string"
|
||||
},
|
||||
"default": ["http", "https", "ftp", "mailto", "tel"]
|
||||
},
|
||||
"autolink": {
|
||||
"type": "boolean",
|
||||
"title": "Autolink URL replacement",
|
||||
"description": "Whether to replace URLs with links or not.",
|
||||
"default": true
|
||||
},
|
||||
"allowNamedProperties": {
|
||||
"type": "boolean",
|
||||
"title": "Allow named properties",
|
||||
"description": "Whether to allow untrusted elements to include `name` and `id` attributes. These attributes are stripped by default to prevent DOM clobbering attacks.",
|
||||
"default": false
|
||||
}
|
||||
},
|
||||
"type": "object"
|
||||
}
|
||||
@@ -0,0 +1,14 @@
|
||||
{
|
||||
"title": "Kernel dialogs",
|
||||
"description": "Kernel dialogs settings.",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"skipKernelRestartDialog": {
|
||||
"title": "Skip kernel restart Dialog",
|
||||
"description": "Whether the kernel restart confirmation dialog is skipped when restarting the kernel.",
|
||||
"type": "boolean",
|
||||
"default": false
|
||||
}
|
||||
},
|
||||
"type": "object"
|
||||
}
|
||||
@@ -0,0 +1,155 @@
|
||||
{
|
||||
"title": "Theme",
|
||||
"jupyter.lab.setting-icon-label": "Theme Manager",
|
||||
"jupyter.lab.menus": {
|
||||
"main": [
|
||||
{
|
||||
"id": "jp-mainmenu-settings",
|
||||
"items": [
|
||||
{
|
||||
"type": "submenu",
|
||||
"submenu": {
|
||||
"id": "jp-mainmenu-settings-apputilstheme",
|
||||
"label": "Theme",
|
||||
"items": [
|
||||
{ "type": "separator" },
|
||||
{
|
||||
"command": "apputils:adaptive-theme"
|
||||
},
|
||||
{ "type": "separator" },
|
||||
{
|
||||
"command": "apputils:theme-scrollbars"
|
||||
},
|
||||
{ "type": "separator" },
|
||||
{
|
||||
"command": "apputils:incr-font-size",
|
||||
"args": {
|
||||
"key": "code-font-size"
|
||||
}
|
||||
},
|
||||
{
|
||||
"command": "apputils:decr-font-size",
|
||||
"args": {
|
||||
"key": "code-font-size"
|
||||
}
|
||||
},
|
||||
{ "type": "separator" },
|
||||
{
|
||||
"command": "apputils:incr-font-size",
|
||||
"args": {
|
||||
"key": "content-font-size1"
|
||||
}
|
||||
},
|
||||
{
|
||||
"command": "apputils:decr-font-size",
|
||||
"args": {
|
||||
"key": "content-font-size1"
|
||||
}
|
||||
},
|
||||
{ "type": "separator" },
|
||||
{
|
||||
"command": "apputils:incr-font-size",
|
||||
"args": {
|
||||
"key": "ui-font-size1"
|
||||
}
|
||||
},
|
||||
{
|
||||
"command": "apputils:decr-font-size",
|
||||
"args": {
|
||||
"key": "ui-font-size1"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
"rank": 0
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"description": "Theme manager settings.",
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"definitions": {
|
||||
"cssOverrides": {
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"description": "The description field of each item is the CSS property that will be used to validate an override's value",
|
||||
"properties": {
|
||||
"code-font-family": {
|
||||
"type": ["string", "null"],
|
||||
"description": "font-family"
|
||||
},
|
||||
"code-font-size": {
|
||||
"type": ["string", "null"],
|
||||
"description": "font-size"
|
||||
},
|
||||
|
||||
"content-font-family": {
|
||||
"type": ["string", "null"],
|
||||
"description": "font-family"
|
||||
},
|
||||
"content-font-size1": {
|
||||
"type": ["string", "null"],
|
||||
"description": "font-size"
|
||||
},
|
||||
|
||||
"ui-font-family": {
|
||||
"type": ["string", "null"],
|
||||
"description": "font-family"
|
||||
},
|
||||
"ui-font-size1": {
|
||||
"type": ["string", "null"],
|
||||
"description": "font-size"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"properties": {
|
||||
"theme": {
|
||||
"type": "string",
|
||||
"title": "Selected Theme",
|
||||
"description": "Application-level visual styling theme. Ignored when Adaptive Theme is enabled.",
|
||||
"default": "JupyterLab Light"
|
||||
},
|
||||
"adaptive-theme": {
|
||||
"type": "boolean",
|
||||
"title": "Adaptive Theme",
|
||||
"description": "Synchronize visual styling theme with system settings",
|
||||
"default": false
|
||||
},
|
||||
"preferred-light-theme": {
|
||||
"type": "string",
|
||||
"title": "Preferred Light Theme",
|
||||
"description": "Application-level light visual styling theme. Ignored when Adaptive Theme is disabled.",
|
||||
"default": "JupyterLab Light"
|
||||
},
|
||||
"preferred-dark-theme": {
|
||||
"type": "string",
|
||||
"title": "Preferred Dark Theme",
|
||||
"description": "Application-level dark visual styling theme. Ignored when Adaptive Theme is disabled.",
|
||||
"default": "JupyterLab Dark"
|
||||
},
|
||||
"theme-scrollbars": {
|
||||
"type": "boolean",
|
||||
"title": "Scrollbar Theming",
|
||||
"description": "Enable/disable styling of the application scrollbars",
|
||||
"default": false
|
||||
},
|
||||
"overrides": {
|
||||
"title": "Theme CSS Overrides",
|
||||
"description": "Override theme CSS variables by setting key-value pairs here",
|
||||
"$ref": "#/definitions/cssOverrides",
|
||||
"default": {
|
||||
"code-font-family": null,
|
||||
"code-font-size": null,
|
||||
|
||||
"content-font-family": null,
|
||||
"content-font-size1": null,
|
||||
|
||||
"ui-font-family": null,
|
||||
"ui-font-size1": null
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,35 @@
|
||||
{
|
||||
"title": "Shortcuts Help",
|
||||
"description": "Shortcut help settings.",
|
||||
"jupyter.lab.menus": {
|
||||
"main": [
|
||||
{
|
||||
"id": "jp-mainmenu-help",
|
||||
"items": [
|
||||
{
|
||||
"type": "separator",
|
||||
"rank": 0.1
|
||||
},
|
||||
{
|
||||
"command": "apputils:display-shortcuts",
|
||||
"rank": 0.1
|
||||
},
|
||||
{
|
||||
"type": "separator",
|
||||
"rank": 0.1
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"jupyter.lab.shortcuts": [
|
||||
{
|
||||
"command": "apputils:display-shortcuts",
|
||||
"keys": ["Accel Shift H"],
|
||||
"selector": "body"
|
||||
}
|
||||
],
|
||||
"properties": {},
|
||||
"type": "object",
|
||||
"additionalProperties": false
|
||||
}
|
||||
Reference in New Issue
Block a user