Add EmoSet training and evaluation
This commit is contained in:
@@ -0,0 +1,57 @@
|
||||
{
|
||||
"name": "@jupyterlab/documentsearch-extension",
|
||||
"version": "4.5.1",
|
||||
"description": "JupyterLab - Document Search 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,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 -w --listEmittedFiles"
|
||||
},
|
||||
"dependencies": {
|
||||
"@jupyterlab/application": "^4.5.1",
|
||||
"@jupyterlab/apputils": "^4.6.1",
|
||||
"@jupyterlab/documentsearch": "^4.5.1",
|
||||
"@jupyterlab/settingregistry": "^4.5.1",
|
||||
"@jupyterlab/translation": "^4.5.1",
|
||||
"@lumino/commands": "^2.3.3",
|
||||
"@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"
|
||||
}
|
||||
@@ -0,0 +1,80 @@
|
||||
{
|
||||
"title": "Document Search",
|
||||
"description": "Document search plugin.",
|
||||
"jupyter.lab.setting-icon": "ui-components:search",
|
||||
"jupyter.lab.setting-icon-label": "Document Search",
|
||||
"jupyter.lab.menus": {
|
||||
"main": [
|
||||
{
|
||||
"id": "jp-mainmenu-edit",
|
||||
"items": [
|
||||
{
|
||||
"type": "separator",
|
||||
"rank": 10
|
||||
},
|
||||
{
|
||||
"command": "documentsearch:start",
|
||||
"rank": 10
|
||||
},
|
||||
{
|
||||
"command": "documentsearch:highlightNext",
|
||||
"rank": 10
|
||||
},
|
||||
{
|
||||
"command": "documentsearch:highlightPrevious",
|
||||
"rank": 10
|
||||
},
|
||||
{
|
||||
"type": "separator",
|
||||
"rank": 10
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"jupyter.lab.shortcuts": [
|
||||
{
|
||||
"command": "documentsearch:start",
|
||||
"keys": ["Accel F"],
|
||||
"selector": ".jp-mod-searchable"
|
||||
},
|
||||
{
|
||||
"command": "documentsearch:highlightNext",
|
||||
"keys": ["Accel G"],
|
||||
"selector": ".jp-mod-searchable"
|
||||
},
|
||||
{
|
||||
"command": "documentsearch:highlightPrevious",
|
||||
"keys": ["Accel Shift G"],
|
||||
"selector": ".jp-mod-searchable"
|
||||
},
|
||||
{
|
||||
"command": "documentsearch:toggleSearchInSelection",
|
||||
"keys": ["Alt L"],
|
||||
"selector": ".jp-mod-search-active"
|
||||
},
|
||||
{
|
||||
"command": "documentsearch:end",
|
||||
"keys": ["Escape"],
|
||||
"selector": ".jp-mod-search-active"
|
||||
}
|
||||
],
|
||||
"properties": {
|
||||
"searchDebounceTime": {
|
||||
"title": "Search debounce time (ms)",
|
||||
"description": "The debounce time in milliseconds applied to the search input field. The already opened input files will not be updated if you change that value",
|
||||
"type": "number",
|
||||
"default": 500,
|
||||
"minimum": 0
|
||||
},
|
||||
"autoSearchInSelection": {
|
||||
"title": "Search in selection automatically",
|
||||
"description": "When starting search, the 'search in selection' mode will be enabled if `any` text/cell is selected, or when `multiple` lines or cells are selected, or `never`.",
|
||||
"type": "string",
|
||||
"enum": ["never", "multiple-selected", "any-selected"],
|
||||
"default": "never"
|
||||
}
|
||||
},
|
||||
"additionalProperties": false,
|
||||
"type": "object"
|
||||
}
|
||||
Reference in New Issue
Block a user