-
Notifications
You must be signed in to change notification settings - Fork 6
add testing in readme #9
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
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,13 @@ | ||
| *.so | ||
| .vscode | ||
| *.pyc | ||
| *.so | ||
| /__pycache__/ | ||
| /__pycache__/* | ||
| data_process/grasp_data/* | ||
| graspnet_dataset | ||
| data_process/script/image_skip.txt | ||
| data_process/script/scene_skip.txt | ||
| *.npz | ||
| *.npy | ||
| grasp_multiObject_multiGrasp/data/coco/ | ||
| grasp_multiObject_multiGrasp/tools/result_/ | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -148,6 +148,13 @@ cd .. | |
|
|
||
| 3. Training | ||
| ``` | ||
| cd grasp_multiObject_multiGrasp | ||
| ./experiments/scripts/train_faster_rcnn.sh 0 graspRGB res50 | ||
| ``` | ||
| ./train_grasp.sh | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Maybe "./command_train_grasp.sh"? |
||
| ``` | ||
|
|
||
| in the end of training the training script will call `test_faster_rcnn.sh`, but that file wasnot carefully rewrited, so you will get a 'no dataset' and then exit. its ok, go to next part: test. | ||
|
|
||
| 4. Testing | ||
|
|
||
| ``` | ||
| ./test_grasp.sh | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Seems no such script? Or do you mean the "./command_predict_grasp.sh"? |
||
| `` | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,8 @@ | ||
| #!/bin/bash | ||
| GPU_ID="0" | ||
|
|
||
| cd grasp_multiObject_multiGrasp/tools | ||
|
|
||
| CUDA_VISIBLE_DEVICES=${GPU_ID} python predict_graspRGD.py \ | ||
| --net res50 \ | ||
| --dataset grasp |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,4 @@ | ||
| #!/bin/bash | ||
|
|
||
| cd grasp_multiObject_multiGrasp | ||
| ./experiments/scripts/train_faster_rcnn.sh 0 graspRGB res50 |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,12 @@ | ||
| grasp_data | ||
| tensorboard | ||
| output | ||
| log.txt | ||
| env.txt | ||
| data/coco | ||
| data/cache | ||
| data/demo/Images/ | ||
| data/imagenet_weights/* | ||
| *.pyc | ||
| *.cpython-36.pyc | ||
| lib/datasets/__pycache__ |
This file was deleted.
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.
Maybe "grasp_multiObject_multiGrasp/tools/result/*.npy" is better?