-
Notifications
You must be signed in to change notification settings - Fork 599
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Docs] add quick_run.md,model_zoo.md,dataset.md #214
Conversation
Codecov Report
@@ Coverage Diff @@
## master #214 +/- ##
==========================================
+ Coverage 69.62% 69.86% +0.23%
==========================================
Files 87 87
Lines 4395 4496 +101
Branches 863 877 +14
==========================================
+ Hits 3060 3141 +81
- Misses 1047 1056 +9
- Partials 288 299 +11
Flags with carried forward coverage won't be shown. Click here to find out more.
Continue to review full report at Codecov.
|
注意: | ||
|
||
- `ILSVRC` 下的 `Lists` 包含来在[这里](https://github.com/msracver/Flow-Guided-Feature-Aggregation/tree/master/data/ILSVRC2015/ImageSets)的 txt 文件。 | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
包含来自这里
docs_zh-CN/model_zoo.md
Outdated
|
||
- 我们默认使用分布式训练。 | ||
- 所有 pytorch 风格的预训练骨干网络都是来自 Pytorch 的模型库。 | ||
- 为了与其他代码库进行公平比较,我们以全部 8 个 GPU 的 `torch.cuda.max_memory_allocated()` 的最大值作为 GPU 占用率。请注意,此值通常小于 `nvidia-smi` 显示的值。 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
最大值作为GPU显存使用量
docs_zh-CN/model_zoo.md
Outdated
- 我们默认使用分布式训练。 | ||
- 所有 pytorch 风格的预训练骨干网络都是来自 Pytorch 的模型库。 | ||
- 为了与其他代码库进行公平比较,我们以全部 8 个 GPU 的 `torch.cuda.max_memory_allocated()` 的最大值作为 GPU 占用率。请注意,此值通常小于 `nvidia-smi` 显示的值。 | ||
- 我们以网络前向传播和后处理的时间之和作为推理时间,不包含数据加载时间。结果是通过脚本 `tools/benchmark.py` 获得的,该脚本计算 2000 张图像的平均时间。 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
该推理时间不包含数据加载时间
推理时间结果是通过脚本
该脚本计算处理2000张
docs_zh-CN/quick_run.md
Outdated
|
||
### 推理 | ||
|
||
我们提供了对给定的视频或者包含连续图像的文件夹进行推理的示例脚本。 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
进行推理的演示脚本
Please translate demo
to 演示
in the following docs
docs_zh-CN/quick_run.md
Outdated
|
||
### 准备配置 | ||
|
||
下一步是准备配置,从而可以成功加载数据集或模型。 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
下一步是准备配置文件
docs_zh-CN/quick_run.md
Outdated
|
||
### 训练新模型 | ||
|
||
要使用新配置训练模型,您只需运行 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
要使用新的配置文件训练模型
docs_zh-CN/quick_run.md
Outdated
|
||
可选参数: | ||
|
||
- `OUTPUT`:可视化示例的输出路径。如果未指定 `OUTPUT`,使用 `--show` 会实时显示视频。 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
可视化演示的输出路径
docs_zh-CN/quick_run.md
Outdated
|
||
可选参数: | ||
|
||
- `OUTPUT`:可视化示例的输出路径。如果未指定 `OUTPUT`,使用 `--show` 会实时显示视频。 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
可视化演示的输出路径
docs_zh-CN/quick_run.md
Outdated
|
||
可选参数: | ||
|
||
- `OUTPUT`:可视化示例的输出路径。如果未指定 `OUTPUT`,使用 `--show` 会实时显示视频。 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
可视化演示的输出路径
docs_zh-CN/quick_run.md
Outdated
|
||
您可以查看[源代码](https://github.com/open-mmlab/mmdetection/blob/master/tools/slurm_train.sh)以了解完整的参数和环境变量。 | ||
|
||
使用Slurm时,需要通过以下方式之一设置端口选项: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please add a space between english and chinese.
docs_zh-CN/quick_run.md
Outdated
### 训练 | ||
|
||
MMTracking 也为训练模型提供了开箱即用的工具。 | ||
本节将展示如何在标准数据集(即 MOT17)上训练 _预定义_ 模型(在 [configs](https://github.com/open-mmlab/mmtracking/tree/master/configs) 下)。 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[configs](../configs)
docs_zh-CN/quick_run.md
Outdated
[GPUS=${GPUS}] ./tools/slurm_train.sh ${PARTITION} ${JOB_NAME} ${CONFIG_FILE} ${WORK_DIR} | ||
``` | ||
|
||
您可以查看[源代码](https://github.com/open-mmlab/mmdetection/blob/master/tools/slurm_train.sh)以了解完整的参数和环境变量。 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[源代码](../tools/slurm_train.sh)
No description provided.