Commit 5dcc556e authored by Alexander Melde's avatar Alexander Melde Committed by Facebook Github Bot

improved symlink example code (#846)

Summary:
The current/old example does not link to the correct subdirectories.
The old example created two links to the same parent directory instead of two links to the seperate subdirectories.
I corrected the example code, so the two links link to the two seperate subdirectories.
Pull Request resolved: https://github.com/facebookresearch/Detectron/pull/846

Reviewed By: rbgirshick

Differential Revision: D14703901

Pulled By: ir413

fbshipit-source-id: b6525b7414a8b9c2dba819a76bae245d06a3b499
parent e2aef3a7
...@@ -29,8 +29,8 @@ If that is not the case, you may need to do something similar to: ...@@ -29,8 +29,8 @@ If that is not the case, you may need to do something similar to:
``` ```
mkdir -p $DETECTRON/detectron/datasets/data/coco mkdir -p $DETECTRON/detectron/datasets/data/coco
ln -s /path/to/coco_train2014 $DETECTRON/detectron/datasets/data/coco/ ln -s /path/to/coco_train2014 $DETECTRON/detectron/datasets/data/coco/coco_train2014
ln -s /path/to/coco_val2014 $DETECTRON/detectron/datasets/data/coco/ ln -s /path/to/coco_val2014 $DETECTRON/detectron/datasets/data/coco/coco_val2014
ln -s /path/to/json/annotations $DETECTRON/detectron/datasets/data/coco/annotations ln -s /path/to/json/annotations $DETECTRON/detectron/datasets/data/coco/annotations
``` ```
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment