-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
yanxp
committed
Nov 16, 2018
1 parent
6af7050
commit 5a4fdd9
Showing
7 changed files
with
109 additions
and
7 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
data/* | ||
*.pyc | ||
*~ | ||
|
||
*.o | ||
*.so | ||
|
||
.ipynb_checkpoints | ||
notebooks/*.pkl | ||
|
||
/Outputs | ||
|
||
# ------------------------------ | ||
|
||
.vscode/* | ||
!.vscode/settings.json | ||
!.vscode/tasks.json | ||
!.vscode/launch.json | ||
!.vscode/extensions.json | ||
|
||
# General | ||
.DS_Store | ||
.AppleDouble | ||
.LSOverride | ||
|
||
# Icon must end with two \r | ||
Icon | ||
|
||
# Thumbnails | ||
._* | ||
|
||
# Files that might appear in the root of a volume | ||
.DocumentRevisions-V100 | ||
.fseventsd | ||
.Spotlight-V100 | ||
.TemporaryItems | ||
.Trashes | ||
.VolumeIcon.icns | ||
.com.apple.timemachine.donotpresent | ||
|
||
# Directories potentially created on remote AFP share | ||
.AppleDB | ||
.AppleDesktop | ||
Network Trash Folder | ||
Temporary Items | ||
.apdisk | ||
|
||
*~ | ||
|
||
# temporary files which can be created if a process still has a handle open of a deleted file | ||
.fuse_hidden* | ||
|
||
# KDE directory preferences | ||
.directory | ||
|
||
# Linux trash folder which might appear on any partition or disk | ||
.Trash-* | ||
|
||
# .nfs files are created when an open file is removed but is still being accessed | ||
.nfs* | ||
|
||
*.pth | ||
|
||
data/aliyun | ||
data/logo | ||
data/*.txt | ||
aliyun | ||
eval | ||
csv | ||
*.txt | ||
*.csv | ||
result |
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,6 +1,6 @@ | ||
# from .voc import VOCDetection, AnnotationTransform, detection_collate, VOC_CLASSES | ||
from .voc0712 import VOCDetection, AnnotationTransform, detection_collate, VOC_CLASSES, collate_minibatch | ||
from .logo import LogoDetection, AnnotationTransform, LOGO_CLASSES | ||
from .voc0712 import VOCDetection, AnnotationTransform, detection_collate, VOC_CLASSES | ||
from .logo import LogoDetection, AnnotationTransform, LOGO_CLASSES, collate_minibatch | ||
from .coco import COCODetection | ||
from .data_augment import * | ||
from .config import * |
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
Large diffs are not rendered by default.
Oops, something went wrong.
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,2 +1,2 @@ | ||
srun --partition=SenseMediaA --mpi=pmi2 --gres=gpu:1 --job-name=Yolo --kill-on-bad-exit=1 python test_logo.py -d Logo -v RFB_E_vgg -s 512 --trained_model aliyunRFB_E_vgg_Logo_epoches_20.pth | ||
srun --partition=SenseMediaA --mpi=pmi2 --gres=gpu:1 --job-name=Yolo --kill-on-bad-exit=1 python test_logo.py -d Logo -v RFB_E_vgg -s 512 --trained_model aliyunRFB_E_vgg_Logo_epoches_45.pth | ||
|
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 +1 @@ | ||
srun --partition=SenseMediaF --mpi=pmi2 --gres=gpu:8 --job-name=logo --kill-on-bad-exit=1 python train_logo_coco.py -d Logo -v RFB_E_vgg -s 512 -b 32 --ngpu 8 --save_folder aliyun --resume_net RFB512_E_34_4.pth | ||
srun --partition=SenseMediaA --mpi=pmi2 --gres=gpu:8 --job-name=logo --kill-on-bad-exit=1 python train_logo_coco.py -d Logo -v RFB_E_vgg -s 512 -b 16 --ngpu 8 --save_folder 2000 --resume_net RFB512_E_34_4.pth |
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