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,61 @@
{
"name": "@jupyterlab/markdownviewer-extension",
"version": "4.5.1",
"description": "JupyterLab - Markdown Renderer 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/markdownviewer": "^4.5.1",
"@jupyterlab/rendermime": "^4.5.1",
"@jupyterlab/settingregistry": "^4.5.1",
"@jupyterlab/toc": "^6.5.1",
"@jupyterlab/translation": "^4.5.1"
},
"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,76 @@
{
"jupyter.lab.setting-icon": "ui-components:markdown",
"jupyter.lab.setting-icon-label": "Markdown Viewer",
"title": "Markdown Viewer",
"description": "Markdown viewer settings.",
"jupyter.lab.menus": {
"context": [
{
"command": "markdownviewer:edit",
"selector": ".jp-RenderedMarkdown"
}
]
},
"definitions": {
"fontFamily": {
"type": ["string", "null"]
},
"fontSize": {
"type": ["integer", "null"],
"minimum": 1,
"maximum": 100
},
"lineHeight": {
"type": ["number", "null"]
},
"lineWidth": {
"type": ["number", "null"]
},
"hideFrontMatter": {
"type": "boolean"
},
"renderTimeout": {
"type": "number"
}
},
"properties": {
"fontFamily": {
"title": "Font Family",
"description": "The font family used to render markdown.\nIf `null`, value from current theme is used.",
"$ref": "#/definitions/fontFamily",
"default": null
},
"fontSize": {
"title": "Font Size",
"description": "The size in pixel of the font used to render markdown.\nIf `null`, value from current theme is used.",
"$ref": "#/definitions/fontSize",
"default": null
},
"lineHeight": {
"title": "Line Height",
"description": "The line height used to render markdown.\nIf `null`, value from current theme is used.",
"$ref": "#/definitions/lineHeight",
"default": null
},
"lineWidth": {
"title": "Line Width",
"description": "The text line width expressed in CSS ch units.\nIf `null`, lines fit the viewport width.",
"$ref": "#/definitions/lineWidth",
"default": null
},
"hideFrontMatter": {
"title": "Hide Front Matter",
"description": "Whether to hide YAML front matter.\nThe YAML front matter must be placed at the top of the document,\nstarted by a line of three dashes (---) and ended by a line of\nthree dashes (---) or three points (...).",
"$ref": "#/definitions/hideFrontMatter",
"default": true
},
"renderTimeout": {
"title": "Render Timeout",
"description": "The render timeout in milliseconds.",
"$ref": "#/definitions/renderTimeout",
"default": 1000
}
},
"additionalProperties": false,
"type": "object"
}