Add EmoSet training and evaluation
This commit is contained in:
@@ -0,0 +1,61 @@
|
||||
{
|
||||
"name": "@jupyterlab/toc-extension",
|
||||
"version": "6.5.1",
|
||||
"description": "JupyterLab - Table of Contents widget 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,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}",
|
||||
"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/settingregistry": "^4.5.1",
|
||||
"@jupyterlab/toc": "^6.5.1",
|
||||
"@jupyterlab/translation": "^4.5.1",
|
||||
"@jupyterlab/ui-components": "^4.5.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"rimraf": "~5.0.5",
|
||||
"typescript": "~5.5.4"
|
||||
},
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
},
|
||||
"jupyterlab": {
|
||||
"extension": true,
|
||||
"schemaDir": "schema"
|
||||
},
|
||||
"styleModule": "style/index.js"
|
||||
}
|
||||
@@ -0,0 +1,72 @@
|
||||
{
|
||||
"jupyter.lab.setting-icon": "ui-components:toc",
|
||||
"jupyter.lab.setting-icon-label": "Table of Contents",
|
||||
"title": "Table of Contents",
|
||||
"description": "Default table of contents settings.",
|
||||
"jupyter.lab.menus": {
|
||||
"main": [
|
||||
{
|
||||
"id": "jp-mainmenu-view",
|
||||
"items": [
|
||||
{
|
||||
"command": "toc:show-panel",
|
||||
"rank": 4
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"context": [
|
||||
{
|
||||
"command": "toc:run-cells",
|
||||
"selector": ".jp-TableOfContents-content[data-document-type=\"notebook\"] .jp-tocItem"
|
||||
}
|
||||
]
|
||||
},
|
||||
"jupyter.lab.shortcuts": [
|
||||
{
|
||||
"command": "toc:show-panel",
|
||||
"keys": ["Accel Shift K"],
|
||||
"selector": "body"
|
||||
}
|
||||
],
|
||||
"properties": {
|
||||
"maximalDepth": {
|
||||
"title": "Maximal headings depth",
|
||||
"type": "integer",
|
||||
"minimum": 1,
|
||||
"default": 4
|
||||
},
|
||||
"numberingH1": {
|
||||
"title": "Enable 1st headings numbering",
|
||||
"description": "Whether to number first-level headings or not.",
|
||||
"type": "boolean",
|
||||
"default": true
|
||||
},
|
||||
"numberHeaders": {
|
||||
"title": "Enable headings numbering",
|
||||
"description": "Whether to automatically number the headings or not.",
|
||||
"type": "boolean",
|
||||
"default": false
|
||||
},
|
||||
"includeOutput": {
|
||||
"title": "Include cell output in headings",
|
||||
"description": "Whether to include cell output in headings or not.",
|
||||
"type": "boolean",
|
||||
"default": true
|
||||
},
|
||||
"syncCollapseState": {
|
||||
"type": "boolean",
|
||||
"title": "Synchronize collapse state",
|
||||
"description": "If set to true, when a heading is collapsed in the table of contents the corresponding section in the document is collapsed as well and vice versa. This inhibits the cell output headings.",
|
||||
"default": false
|
||||
},
|
||||
"baseNumbering": {
|
||||
"title": "Base level for the highest headings",
|
||||
"type": "integer",
|
||||
"description": "The number headings start at.",
|
||||
"default": 1
|
||||
}
|
||||
},
|
||||
"additionalProperties": false,
|
||||
"type": "object"
|
||||
}
|
||||
Reference in New Issue
Block a user