-
Notifications
You must be signed in to change notification settings - Fork 630
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: rewrite high-dimensional * chore: update dependencies * chore: update dependencies * chore: rewrite scatter chart * feat: t-sne for high-dimensional * feat: umap for high-dimensional * feat: add hover effects in high-dimensional * feat: add hover label in high-dimensional chart * chore: update dependencies * feat: search & highlight in high-dimensional chart * chore: update dependencies * fix: resolve type * chore: remove unused code
- Loading branch information
1 parent
1d65b86
commit f501709
Showing
79 changed files
with
17,726 additions
and
3,911 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
53 changes: 47 additions & 6 deletions
53
frontend/packages/core/public/locales/en/high-dimensional.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,50 @@ | ||
{ | ||
"2d": "2D", | ||
"3d": "3D", | ||
"3d-label": "Enable/disable 3D labels mode", | ||
"component": "Component #{{index}}", | ||
"continue": "Resume", | ||
"data": "Data", | ||
"data-dimension": "Types", | ||
"data-path": "Data Path", | ||
"dimension": "Dimension", | ||
"display-all-label": "Display All Labels", | ||
"pca": "PCA", | ||
"reduction-method": "Reduction Method", | ||
"tsne": "T-SNE" | ||
"dimension-value": { | ||
"2d": "2D", | ||
"3d": "3D" | ||
}, | ||
"iteration": "Iteration", | ||
"learning-rate": "Learning rate", | ||
"loading": { | ||
"calculating": "Calculating...", | ||
"fetching-metadata": "Fetching metadata...", | ||
"fetching-tensor": "Fetching tensor...", | ||
"parsing": "Parsing data...", | ||
"reading-metadata": "Reading metadata...", | ||
"reading-vector": "Reading tensor..." | ||
}, | ||
"matched-result-count": "{{count}} matched.", | ||
"neighbors": "Neighbors", | ||
"pause": "Pause", | ||
"perplexity": "Perplexity", | ||
"points": "Points", | ||
"reduction-value": { | ||
"pca": "PCA", | ||
"tsne": "T-SNE", | ||
"umap": "UMAP" | ||
}, | ||
"reset-zoom": "Reset zoom to fit all points", | ||
"run": "Run", | ||
"search-empty": "Nothing matched", | ||
"select-color": "Color by", | ||
"select-data": "Select Data", | ||
"select-file": "Select File", | ||
"select-label": "Label by", | ||
"selection": "Bounding box selection", | ||
"stop": "Stop", | ||
"total-variance-described": "Total variance described", | ||
"tsne": "T-SNE", | ||
"upload": { | ||
"step1": "Step 1: Load a TSV file of vectors.<1/> Example of 3 vectors with dimension 4:", | ||
"step2": "Step 2 (optional): Load a TSV file of metadata.<1/>Example of 3 data points and 2 columns.<3/><4>Note: If there is more than one column, the first row will be parsed as column labels.</4>" | ||
}, | ||
"upload-data": "Upload Data", | ||
"upload-from-computer": "Load data from your computer" | ||
} |
53 changes: 47 additions & 6 deletions
53
frontend/packages/core/public/locales/zh/high-dimensional.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,50 @@ | ||
{ | ||
"2d": "二维", | ||
"3d": "三维", | ||
"3d-label": "开启/关闭3D数据标签", | ||
"component": "主成分{{index}}", | ||
"continue": "继续", | ||
"data": "数据", | ||
"data-dimension": "数据类别", | ||
"data-path": "数据路径", | ||
"dimension": "维度", | ||
"display-all-label": "展示所有标签", | ||
"pca": "PCA", | ||
"reduction-method": "降维方法", | ||
"tsne": "T-SNE" | ||
"dimension-value": { | ||
"2d": "2D", | ||
"3d": "3D" | ||
}, | ||
"iteration": "迭代", | ||
"learning-rate": "学习率", | ||
"loading": { | ||
"calculating": "计算中……", | ||
"fetching-metadata": "获取元数据中……", | ||
"fetching-tensor": "获取数据中……", | ||
"parsing": "解析数据中……", | ||
"reading-metadata": "读取元数据中……", | ||
"reading-vector": "读取数据中……" | ||
}, | ||
"matched-result-count": "匹配结果 {{count}}", | ||
"neighbors": "相邻数据点数量", | ||
"pause": "暂停", | ||
"perplexity": "困惑度", | ||
"points": "数据点", | ||
"reduction-value": { | ||
"pca": "PCA", | ||
"tsne": "T-SNE", | ||
"umap": "UMAP" | ||
}, | ||
"reset-zoom": "重置大小设置", | ||
"run": "运行", | ||
"search-empty": "无搜索结果", | ||
"select-color": "颜色分类方式", | ||
"select-data": "选择可视化数据", | ||
"select-file": "选择文件", | ||
"select-label": "数据标签", | ||
"selection": "框选数据", | ||
"stop": "停止", | ||
"total-variance-described": "主成分解释原变量总方差", | ||
"tsne": "T-SNE", | ||
"upload": { | ||
"step1": "步骤一:上传向量的TSV文件<1/>以下是三个带有四个维度的向量的例子", | ||
"step2": "步骤二(可选):上传Metadata的TSV文件<1/>以下是四列三个数据点的例子:<3/><4>注意:如果数据列数大于一,那么第一行数据会默认为列名</4>" | ||
}, | ||
"upload-data": "上传数据", | ||
"upload-from-computer": "从本地电脑上传数据" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.