更新.gitignore以屏蔽所有数据集文件类型
This commit is contained in:
parent
cd542e18ef
commit
e65be7d668
|
|
@ -158,15 +158,26 @@ cython_debug/
|
||||||
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
|
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
|
||||||
# and can be added to the global gitignore or merged into this file. For a more nuclear
|
# and can be added to the global gitignore or merged into this file. For a more nuclear
|
||||||
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
|
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
|
||||||
.idea/
|
#.idea/
|
||||||
|
|
||||||
|
# 数据集文件屏蔽
|
||||||
.STDEN/
|
.STDEN/
|
||||||
yuan
|
|
||||||
exp/
|
exp/
|
||||||
STDEN/
|
STDEN/
|
||||||
models/gpt2/
|
models/gpt2/
|
||||||
pre-trained/
|
pre-trained/
|
||||||
data/*
|
|
||||||
|
# 数据集文件类型屏蔽
|
||||||
|
*.csv
|
||||||
|
*.npz
|
||||||
|
*.npy
|
||||||
|
*.pkl
|
||||||
|
*.h5
|
||||||
|
*.hdf5
|
||||||
|
|
||||||
|
# 特定数据集目录屏蔽
|
||||||
data/PEMS08/
|
data/PEMS08/
|
||||||
data/PEMSD8/
|
data/PEMSD8/
|
||||||
|
test_semantic.npy
|
||||||
|
test_spatial.npy
|
||||||
Loading…
Reference in New Issue