Skip to content

Commit

Permalink
Merge pull request #57 from opendatalab/ling
Browse files Browse the repository at this point in the history
docs: update docs
  • Loading branch information
lvlinsheng authored Nov 16, 2023
2 parents 84ca146 + 2dd3375 commit dda4875
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 16 deletions.
6 changes: 3 additions & 3 deletions src/pages/guide.export/markdown_en-US.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import audio from './audio.png';

### Image Format

After finishing the annotations, you can export the annotated results file in JSON, COCO, MASK formats.For annotation format instructions, please visit <https://opendatalab.github.io/labelU/#/schema/image/point>
After finishing the annotations, you can export the annotated results file in JSON, COCO, MASK formats.For annotation format instructions, please visit (https://opendatalab.github.io/labelU/#/schema/image/point)



Expand All @@ -19,7 +19,7 @@ After finishing the annotations, you can export the annotated results file in JS

### Video Format

After completing the annotations, you can export the annotated results file in JSON format.For annotation format instructions, please visit <https://opendatalab.github.io/labelU/#/schema/video/segment>
After completing the annotations, you can export the annotated results file in JSON format.For annotation format instructions, please visit (https://opendatalab.github.io/labelU/#/schema/video/segment)



Expand All @@ -32,7 +32,7 @@ After completing the annotations, you can export the annotated results file in J

### Audio Format

After completing the annotations, you can export the annotated results file in JSON format.For annotation format instructions, please visit <https://opendatalab.github.io/labelU/#/schema/audio/segment>
After completing the annotations, you can export the annotated results file in JSON format.For annotation format instructions, please visit (https://opendatalab.github.io/labelU/#/schema/audio/segment)



Expand Down
7 changes: 4 additions & 3 deletions src/pages/guide.export/markdown_zh-CN.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -6,18 +6,19 @@ import audio from './audio.png';

### 图片

完成标注后,可将标注结果文件以JSON,COCO,MASK形式导出。标注格式说明见<https://opendatalab.github.io/labelU/#/schema/image/point>
完成标注后,可将标注结果文件以JSON,COCO,MASK形式导出。标注格式说明见(https://opendatalab.github.io/labelU/#/schema/image/point)


<img src={imageUrl} />

### 视频

完成标注后,可将标注结果文件以JSON形式导出。标注格式说明见<https://opendatalab.github.io/labelU/#/schema/video/segment>
完成标注后,可将标注结果文件以JSON形式导出。标注格式说明见(https://opendatalab.github.io/labelU/#/schema/video/segment)

<img src={video} />

### 音频

完成标注后,可将标注结果文件以JSON形式导出。标注格式说明见<https://opendatalab.github.io/labelU/#/schema/audio/segment>
完成标注后,可将标注结果文件以JSON形式导出。标注格式说明见(https://opendatalab.github.io/labelU/#/schema/audio/segment)

<img src={audio} />
20 changes: 10 additions & 10 deletions src/pages/guide.install/markdown_en-US.mdx
Original file line number Diff line number Diff line change
@@ -1,35 +1,35 @@
## 安装
## Installation

1. 安装 [Miniconda](https://docs.conda.io/en/latest/miniconda.html)选择对应的操作系统类型并下载安装。
1. Install [Miniconda](https://docs.conda.io/en/latest/miniconda.html)choose the corresponding operating system type and download it for installation.

> **** 如果你的系统是 MacOS intel 芯片,请安装 [intel x86_64版本的Miniconda](https://repo.anaconda.com/miniconda/)
> **Note** If your system is MacOS with an Intel chip, please install [intel x86_64版本的Miniconda](https://repo.anaconda.com/miniconda/)
2. 安装完毕后,在终端运行以下命令(过程中的提示选择默认 `y` 即可):
2. After the installation is complete, run the following command in the terminal (you can choose the default 'y' for prompts during the process):

```bash
conda create -n labelu python=3.7
```

> **** Windows 平台可在 Anaconda Prompt 程序中运行以上命令。
> **Note** For Windows platform, you can run the above command in Anaconda Prompt.
3. 激活环境
3. Activate the environment

```bash
conda activate labelu
```

4. 安装 LabelU:
4. Install LabelU:

```bash
pip install labelu
```

> 安装测试版本`pip install --extra-index-url https://test.pypi.org/simple/ labelu==<测试版本号>`
> To install the test version`pip install --extra-index-url https://test.pypi.org/simple/ labelu==<测试版本号>`
5. 运行 LabelU:
5. Run LabelU:

```bash
labelu
```

6. 打开浏览器,访问 [http://localhost:8000/](http://localhost:8000/) 即可使用 LabelU
6. Open your browser and visit [http://localhost:8000/](http://localhost:8000/) to use LabelU.

0 comments on commit dda4875

Please sign in to comment.