Skip to content

Commit

Permalink
feat(make_train_test): 更新数据集生成脚本
Browse files Browse the repository at this point in the history
  • Loading branch information
Yidadaa committed Jun 6, 2019
1 parent 66c3513 commit c2a7ebf
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 117 deletions.
6 changes: 5 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
data/UCF
data/UCF
data/train
data/test
data/train.csv
data/test.csv
114 changes: 0 additions & 114 deletions .vscode/.ropeproject/config.py

This file was deleted.

2 changes: 1 addition & 1 deletion data/make_train_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

def split(src_dir=default_src_dir, output_dir=default_src_dir, size=default_test_size):
# 设置默认参数
src_dir = default_output_dir if src_dir is None else src_dir
src_dir = default_src_dir if src_dir is None else src_dir
output_dir = default_output_dir if output_dir is None else output_dir
size = default_test_size if size is None else size

Expand Down
1 change: 0 additions & 1 deletion dataloader.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ def __init__(self):
)
])


def read_images(self):
pass

Expand Down

0 comments on commit c2a7ebf

Please sign in to comment.