Add EmoSet training and evaluation
This commit is contained in:
@@ -0,0 +1,133 @@
|
||||
{
|
||||
"title": "Debugger",
|
||||
"description": "Debugger settings",
|
||||
"jupyter.lab.setting-icon": "ui-components:bug",
|
||||
"jupyter.lab.setting-icon-label": "Debugger",
|
||||
"jupyter.lab.menus": {
|
||||
"main": [
|
||||
{
|
||||
"id": "jp-mainmenu-kernel",
|
||||
"items": [
|
||||
{ "type": "separator", "rank": 1.2 },
|
||||
{ "command": "debugger:restart-debug", "rank": 1.2 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": "jp-mainmenu-view",
|
||||
"items": [
|
||||
{
|
||||
"command": "debugger:show-panel",
|
||||
"rank": 5
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"context": [
|
||||
{
|
||||
"command": "debugger:inspect-variable",
|
||||
"selector": ".jp-DebuggerVariables-body .jp-DebuggerVariables-grid"
|
||||
},
|
||||
{
|
||||
"command": "debugger:render-mime-variable",
|
||||
"selector": ".jp-DebuggerVariables-body"
|
||||
},
|
||||
{
|
||||
"command": "debugger:copy-to-clipboard",
|
||||
"selector": ".jp-DebuggerVariables-body"
|
||||
},
|
||||
{
|
||||
"command": "debugger:copy-to-globals",
|
||||
"selector": ".jp-DebuggerVariables-body.jp-debuggerVariables-local"
|
||||
}
|
||||
]
|
||||
},
|
||||
"jupyter.lab.shortcuts": [
|
||||
{
|
||||
"command": "debugger:show-panel",
|
||||
"keys": ["Accel Shift E"],
|
||||
"selector": "body"
|
||||
},
|
||||
{
|
||||
"command": "debugger:continue",
|
||||
"keys": ["F9"],
|
||||
"selector": "body"
|
||||
},
|
||||
{
|
||||
"command": "debugger:terminate",
|
||||
"keys": ["Shift F9"],
|
||||
"selector": "[data-jp-debugger-stopped-threads='true']"
|
||||
},
|
||||
{
|
||||
"command": "debugger:next",
|
||||
"keys": ["F10"],
|
||||
"selector": "[data-jp-debugger-stopped-threads='true']"
|
||||
},
|
||||
{
|
||||
"command": "debugger:stepIn",
|
||||
"keys": ["F11"],
|
||||
"selector": "[data-jp-debugger-stopped-threads='true']"
|
||||
},
|
||||
{
|
||||
"command": "debugger:stepOut",
|
||||
"keys": ["Shift F11"],
|
||||
"selector": "[data-jp-debugger-stopped-threads='true']"
|
||||
}
|
||||
],
|
||||
"definitions": {
|
||||
"variableFilters": {
|
||||
"properties": {
|
||||
"xpython": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"properties": {
|
||||
"variableFilters": {
|
||||
"title": "Variable filter",
|
||||
"description": "Variables to filter out in the tree and table viewers",
|
||||
"$ref": "#/definitions/variableFilters",
|
||||
"default": {
|
||||
"xpython": [
|
||||
"debugpy",
|
||||
"display",
|
||||
"get_ipython",
|
||||
"ptvsd",
|
||||
"_xpython_get_connection_filename",
|
||||
"_xpython_launch",
|
||||
"_pydev_stop_at_break",
|
||||
"__annotations__",
|
||||
"__builtins__",
|
||||
"__doc__",
|
||||
"__loader__",
|
||||
"__name__",
|
||||
"__package__",
|
||||
"__spec__"
|
||||
]
|
||||
}
|
||||
},
|
||||
"defaultKernelSourcesFilter": {
|
||||
"title": "Default kernel sources regexp filter",
|
||||
"description": "A regular expression filter to apply by default when showing the kernel sources",
|
||||
"type": "string",
|
||||
"default": ""
|
||||
},
|
||||
"autoCollapseDebuggerSidebar": {
|
||||
"title": "Auto Collapse Debugger Sidebar",
|
||||
"description": "Collapse the debugger sidebar when disabling the debugger on a document.",
|
||||
"type": "boolean",
|
||||
"default": false
|
||||
},
|
||||
"showPausedOverlay": {
|
||||
"title": "Show Paused Overlay",
|
||||
"description": "Show an overlay on the editor or notebook when execution is paused in the debugger.",
|
||||
"type": "boolean",
|
||||
"default": true
|
||||
}
|
||||
},
|
||||
"additionalProperties": false,
|
||||
"type": "object"
|
||||
}
|
||||
@@ -0,0 +1,79 @@
|
||||
{
|
||||
"name": "@jupyterlab/debugger-extension",
|
||||
"version": "4.5.1",
|
||||
"description": "JupyterLab - Debugger Extension",
|
||||
"keywords": [
|
||||
"jupyter",
|
||||
"jupyterlab",
|
||||
"jupyterlab-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/**/*.svg",
|
||||
"style/index.js",
|
||||
"src/**/*.{ts,tsx}"
|
||||
],
|
||||
"scripts": {
|
||||
"build": "tsc -b",
|
||||
"clean": "rimraf lib && rimraf tsconfig.tsbuildinfo && rimraf tsconfig.test.tsbuildinfo && rimraf tests/build",
|
||||
"watch": "tsc -b --watch"
|
||||
},
|
||||
"dependencies": {
|
||||
"@jupyterlab/application": "^4.5.1",
|
||||
"@jupyterlab/apputils": "^4.6.1",
|
||||
"@jupyterlab/cells": "^4.5.1",
|
||||
"@jupyterlab/codeeditor": "^4.5.1",
|
||||
"@jupyterlab/completer": "^4.5.1",
|
||||
"@jupyterlab/console": "^4.5.1",
|
||||
"@jupyterlab/coreutils": "^6.5.1",
|
||||
"@jupyterlab/debugger": "^4.5.1",
|
||||
"@jupyterlab/docregistry": "^4.5.1",
|
||||
"@jupyterlab/fileeditor": "^4.5.1",
|
||||
"@jupyterlab/nbformat": "^4.5.1",
|
||||
"@jupyterlab/notebook": "^4.5.1",
|
||||
"@jupyterlab/rendermime": "^4.5.1",
|
||||
"@jupyterlab/services": "^7.5.1",
|
||||
"@jupyterlab/settingregistry": "^4.5.1",
|
||||
"@jupyterlab/translation": "^4.5.1",
|
||||
"@lumino/commands": "^2.3.3"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@jupyterlab/testing": "^4.5.1",
|
||||
"@types/jest": "^29.2.0",
|
||||
"@types/react-dom": "^18.0.9",
|
||||
"rimraf": "~5.0.5",
|
||||
"typescript": "~5.5.4"
|
||||
},
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
},
|
||||
"jupyterlab": {
|
||||
"extension": true,
|
||||
"schemaDir": "schema"
|
||||
},
|
||||
"styleModule": "style/index.js"
|
||||
}
|
||||
Reference in New Issue
Block a user