Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
Y
yolov5
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
Administrator
yolov5
Commits
b57abb17
Unverified
提交
b57abb17
authored
2月 07, 2022
作者:
Glenn Jocher
提交者:
GitHub
2月 07, 2022
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Move trainloader functions to class methods (#6559)
* Move trainloader functions to class methods * results = ThreadPool(NUM_THREADS).imap(self.load_image, range(n)) * Cleanup
上级
dc7e0930
隐藏空白字符变更
内嵌
并排
正在显示
1 个修改的文件
包含
157 行增加
和
159 行删除
+157
-159
datasets.py
utils/datasets.py
+157
-159
没有找到文件。
utils/datasets.py
浏览文件 @
b57abb17
...
...
@@ -484,7 +484,7 @@ class LoadImagesAndLabels(Dataset):
self
.
batch_shapes
=
np
.
ceil
(
np
.
array
(
shapes
)
*
img_size
/
stride
+
pad
)
.
astype
(
np
.
int
)
*
stride
# Cache images into
memory for faster training (WARNING: large datasets may exceed system RAM
)
# Cache images into
RAM/disk for faster training (WARNING: large datasets may exceed system resources
)
self
.
imgs
,
self
.
img_npy
=
[
None
]
*
n
,
[
None
]
*
n
if
cache_images
:
if
cache_images
==
'disk'
:
...
...
@@ -493,14 +493,14 @@ class LoadImagesAndLabels(Dataset):
self
.
im_cache_dir
.
mkdir
(
parents
=
True
,
exist_ok
=
True
)
gb
=
0
# Gigabytes of cached images
self
.
img_hw0
,
self
.
img_hw
=
[
None
]
*
n
,
[
None
]
*
n
results
=
ThreadPool
(
NUM_THREADS
)
.
imap
(
lambda
x
:
load_image
(
*
x
),
zip
(
repeat
(
self
),
range
(
n
)
))
results
=
ThreadPool
(
NUM_THREADS
)
.
imap
(
self
.
load_image
,
range
(
n
))
pbar
=
tqdm
(
enumerate
(
results
),
total
=
n
)
for
i
,
x
in
pbar
:
if
cache_images
==
'disk'
:
if
not
self
.
img_npy
[
i
]
.
exists
():
np
.
save
(
self
.
img_npy
[
i
]
.
as_posix
(),
x
[
0
])
gb
+=
self
.
img_npy
[
i
]
.
stat
()
.
st_size
else
:
else
:
# 'ram'
self
.
imgs
[
i
],
self
.
img_hw0
[
i
],
self
.
img_hw
[
i
]
=
x
# im, hw_orig, hw_resized = load_image(self, i)
gb
+=
self
.
imgs
[
i
]
.
nbytes
pbar
.
desc
=
f
'{prefix}Caching images ({gb / 1E9:.1f}GB {cache_images})'
...
...
@@ -558,16 +558,16 @@ class LoadImagesAndLabels(Dataset):
mosaic
=
self
.
mosaic
and
random
.
random
()
<
hyp
[
'mosaic'
]
if
mosaic
:
# Load mosaic
img
,
labels
=
load_mosaic
(
self
,
index
)
img
,
labels
=
self
.
load_mosaic
(
index
)
shapes
=
None
# MixUp augmentation
if
random
.
random
()
<
hyp
[
'mixup'
]:
img
,
labels
=
mixup
(
img
,
labels
,
*
load_mosaic
(
self
,
random
.
randint
(
0
,
self
.
n
-
1
)))
img
,
labels
=
mixup
(
img
,
labels
,
*
self
.
load_mosaic
(
random
.
randint
(
0
,
self
.
n
-
1
)))
else
:
# Load image
img
,
(
h0
,
w0
),
(
h
,
w
)
=
load_image
(
self
,
index
)
img
,
(
h0
,
w0
),
(
h
,
w
)
=
self
.
load_image
(
index
)
# Letterbox
shape
=
self
.
batch_shapes
[
self
.
batch
[
index
]]
if
self
.
rect
else
self
.
img_size
# final letterboxed shape
...
...
@@ -624,6 +624,157 @@ class LoadImagesAndLabels(Dataset):
return
torch
.
from_numpy
(
img
),
labels_out
,
self
.
img_files
[
index
],
shapes
def
load_image
(
self
,
i
):
# loads 1 image from dataset index 'i', returns (im, original hw, resized hw)
im
=
self
.
imgs
[
i
]
if
im
is
None
:
# not cached in RAM
npy
=
self
.
img_npy
[
i
]
if
npy
and
npy
.
exists
():
# load npy
im
=
np
.
load
(
npy
)
else
:
# read image
f
=
self
.
img_files
[
i
]
im
=
cv2
.
imread
(
f
)
# BGR
assert
im
is
not
None
,
f
'Image Not Found {f}'
h0
,
w0
=
im
.
shape
[:
2
]
# orig hw
r
=
self
.
img_size
/
max
(
h0
,
w0
)
# ratio
if
r
!=
1
:
# if sizes are not equal
im
=
cv2
.
resize
(
im
,
(
int
(
w0
*
r
),
int
(
h0
*
r
)),
interpolation
=
cv2
.
INTER_LINEAR
if
(
self
.
augment
or
r
>
1
)
else
cv2
.
INTER_AREA
)
return
im
,
(
h0
,
w0
),
im
.
shape
[:
2
]
# im, hw_original, hw_resized
else
:
return
self
.
imgs
[
i
],
self
.
img_hw0
[
i
],
self
.
img_hw
[
i
]
# im, hw_original, hw_resized
def
load_mosaic
(
self
,
index
):
# YOLOv5 4-mosaic loader. Loads 1 image + 3 random images into a 4-image mosaic
labels4
,
segments4
=
[],
[]
s
=
self
.
img_size
yc
,
xc
=
(
int
(
random
.
uniform
(
-
x
,
2
*
s
+
x
))
for
x
in
self
.
mosaic_border
)
# mosaic center x, y
indices
=
[
index
]
+
random
.
choices
(
self
.
indices
,
k
=
3
)
# 3 additional image indices
random
.
shuffle
(
indices
)
for
i
,
index
in
enumerate
(
indices
):
# Load image
img
,
_
,
(
h
,
w
)
=
self
.
load_image
(
index
)
# place img in img4
if
i
==
0
:
# top left
img4
=
np
.
full
((
s
*
2
,
s
*
2
,
img
.
shape
[
2
]),
114
,
dtype
=
np
.
uint8
)
# base image with 4 tiles
x1a
,
y1a
,
x2a
,
y2a
=
max
(
xc
-
w
,
0
),
max
(
yc
-
h
,
0
),
xc
,
yc
# xmin, ymin, xmax, ymax (large image)
x1b
,
y1b
,
x2b
,
y2b
=
w
-
(
x2a
-
x1a
),
h
-
(
y2a
-
y1a
),
w
,
h
# xmin, ymin, xmax, ymax (small image)
elif
i
==
1
:
# top right
x1a
,
y1a
,
x2a
,
y2a
=
xc
,
max
(
yc
-
h
,
0
),
min
(
xc
+
w
,
s
*
2
),
yc
x1b
,
y1b
,
x2b
,
y2b
=
0
,
h
-
(
y2a
-
y1a
),
min
(
w
,
x2a
-
x1a
),
h
elif
i
==
2
:
# bottom left
x1a
,
y1a
,
x2a
,
y2a
=
max
(
xc
-
w
,
0
),
yc
,
xc
,
min
(
s
*
2
,
yc
+
h
)
x1b
,
y1b
,
x2b
,
y2b
=
w
-
(
x2a
-
x1a
),
0
,
w
,
min
(
y2a
-
y1a
,
h
)
elif
i
==
3
:
# bottom right
x1a
,
y1a
,
x2a
,
y2a
=
xc
,
yc
,
min
(
xc
+
w
,
s
*
2
),
min
(
s
*
2
,
yc
+
h
)
x1b
,
y1b
,
x2b
,
y2b
=
0
,
0
,
min
(
w
,
x2a
-
x1a
),
min
(
y2a
-
y1a
,
h
)
img4
[
y1a
:
y2a
,
x1a
:
x2a
]
=
img
[
y1b
:
y2b
,
x1b
:
x2b
]
# img4[ymin:ymax, xmin:xmax]
padw
=
x1a
-
x1b
padh
=
y1a
-
y1b
# Labels
labels
,
segments
=
self
.
labels
[
index
]
.
copy
(),
self
.
segments
[
index
]
.
copy
()
if
labels
.
size
:
labels
[:,
1
:]
=
xywhn2xyxy
(
labels
[:,
1
:],
w
,
h
,
padw
,
padh
)
# normalized xywh to pixel xyxy format
segments
=
[
xyn2xy
(
x
,
w
,
h
,
padw
,
padh
)
for
x
in
segments
]
labels4
.
append
(
labels
)
segments4
.
extend
(
segments
)
# Concat/clip labels
labels4
=
np
.
concatenate
(
labels4
,
0
)
for
x
in
(
labels4
[:,
1
:],
*
segments4
):
np
.
clip
(
x
,
0
,
2
*
s
,
out
=
x
)
# clip when using random_perspective()
# img4, labels4 = replicate(img4, labels4) # replicate
# Augment
img4
,
labels4
,
segments4
=
copy_paste
(
img4
,
labels4
,
segments4
,
p
=
self
.
hyp
[
'copy_paste'
])
img4
,
labels4
=
random_perspective
(
img4
,
labels4
,
segments4
,
degrees
=
self
.
hyp
[
'degrees'
],
translate
=
self
.
hyp
[
'translate'
],
scale
=
self
.
hyp
[
'scale'
],
shear
=
self
.
hyp
[
'shear'
],
perspective
=
self
.
hyp
[
'perspective'
],
border
=
self
.
mosaic_border
)
# border to remove
return
img4
,
labels4
def
load_mosaic9
(
self
,
index
):
# YOLOv5 9-mosaic loader. Loads 1 image + 8 random images into a 9-image mosaic
labels9
,
segments9
=
[],
[]
s
=
self
.
img_size
indices
=
[
index
]
+
random
.
choices
(
self
.
indices
,
k
=
8
)
# 8 additional image indices
random
.
shuffle
(
indices
)
hp
,
wp
=
-
1
,
-
1
# height, width previous
for
i
,
index
in
enumerate
(
indices
):
# Load image
img
,
_
,
(
h
,
w
)
=
self
.
load_image
(
index
)
# place img in img9
if
i
==
0
:
# center
img9
=
np
.
full
((
s
*
3
,
s
*
3
,
img
.
shape
[
2
]),
114
,
dtype
=
np
.
uint8
)
# base image with 4 tiles
h0
,
w0
=
h
,
w
c
=
s
,
s
,
s
+
w
,
s
+
h
# xmin, ymin, xmax, ymax (base) coordinates
elif
i
==
1
:
# top
c
=
s
,
s
-
h
,
s
+
w
,
s
elif
i
==
2
:
# top right
c
=
s
+
wp
,
s
-
h
,
s
+
wp
+
w
,
s
elif
i
==
3
:
# right
c
=
s
+
w0
,
s
,
s
+
w0
+
w
,
s
+
h
elif
i
==
4
:
# bottom right
c
=
s
+
w0
,
s
+
hp
,
s
+
w0
+
w
,
s
+
hp
+
h
elif
i
==
5
:
# bottom
c
=
s
+
w0
-
w
,
s
+
h0
,
s
+
w0
,
s
+
h0
+
h
elif
i
==
6
:
# bottom left
c
=
s
+
w0
-
wp
-
w
,
s
+
h0
,
s
+
w0
-
wp
,
s
+
h0
+
h
elif
i
==
7
:
# left
c
=
s
-
w
,
s
+
h0
-
h
,
s
,
s
+
h0
elif
i
==
8
:
# top left
c
=
s
-
w
,
s
+
h0
-
hp
-
h
,
s
,
s
+
h0
-
hp
padx
,
pady
=
c
[:
2
]
x1
,
y1
,
x2
,
y2
=
(
max
(
x
,
0
)
for
x
in
c
)
# allocate coords
# Labels
labels
,
segments
=
self
.
labels
[
index
]
.
copy
(),
self
.
segments
[
index
]
.
copy
()
if
labels
.
size
:
labels
[:,
1
:]
=
xywhn2xyxy
(
labels
[:,
1
:],
w
,
h
,
padx
,
pady
)
# normalized xywh to pixel xyxy format
segments
=
[
xyn2xy
(
x
,
w
,
h
,
padx
,
pady
)
for
x
in
segments
]
labels9
.
append
(
labels
)
segments9
.
extend
(
segments
)
# Image
img9
[
y1
:
y2
,
x1
:
x2
]
=
img
[
y1
-
pady
:,
x1
-
padx
:]
# img9[ymin:ymax, xmin:xmax]
hp
,
wp
=
h
,
w
# height, width previous
# Offset
yc
,
xc
=
(
int
(
random
.
uniform
(
0
,
s
))
for
_
in
self
.
mosaic_border
)
# mosaic center x, y
img9
=
img9
[
yc
:
yc
+
2
*
s
,
xc
:
xc
+
2
*
s
]
# Concat/clip labels
labels9
=
np
.
concatenate
(
labels9
,
0
)
labels9
[:,
[
1
,
3
]]
-=
xc
labels9
[:,
[
2
,
4
]]
-=
yc
c
=
np
.
array
([
xc
,
yc
])
# centers
segments9
=
[
x
-
c
for
x
in
segments9
]
for
x
in
(
labels9
[:,
1
:],
*
segments9
):
np
.
clip
(
x
,
0
,
2
*
s
,
out
=
x
)
# clip when using random_perspective()
# img9, labels9 = replicate(img9, labels9) # replicate
# Augment
img9
,
labels9
=
random_perspective
(
img9
,
labels9
,
segments9
,
degrees
=
self
.
hyp
[
'degrees'
],
translate
=
self
.
hyp
[
'translate'
],
scale
=
self
.
hyp
[
'scale'
],
shear
=
self
.
hyp
[
'shear'
],
perspective
=
self
.
hyp
[
'perspective'
],
border
=
self
.
mosaic_border
)
# border to remove
return
img9
,
labels9
@staticmethod
def
collate_fn
(
batch
):
img
,
label
,
path
,
shapes
=
zip
(
*
batch
)
# transposed
...
...
@@ -659,159 +810,6 @@ class LoadImagesAndLabels(Dataset):
# Ancillary functions --------------------------------------------------------------------------------------------------
def
load_image
(
self
,
i
):
# loads 1 image from dataset index 'i', returns im, original hw, resized hw
im
=
self
.
imgs
[
i
]
if
im
is
None
:
# not cached in ram
npy
=
self
.
img_npy
[
i
]
if
npy
and
npy
.
exists
():
# load npy
im
=
np
.
load
(
npy
)
else
:
# read image
path
=
self
.
img_files
[
i
]
im
=
cv2
.
imread
(
path
)
# BGR
assert
im
is
not
None
,
f
'Image Not Found {path}'
h0
,
w0
=
im
.
shape
[:
2
]
# orig hw
r
=
self
.
img_size
/
max
(
h0
,
w0
)
# ratio
if
r
!=
1
:
# if sizes are not equal
im
=
cv2
.
resize
(
im
,
(
int
(
w0
*
r
),
int
(
h0
*
r
)),
interpolation
=
cv2
.
INTER_AREA
if
r
<
1
and
not
self
.
augment
else
cv2
.
INTER_LINEAR
)
return
im
,
(
h0
,
w0
),
im
.
shape
[:
2
]
# im, hw_original, hw_resized
else
:
return
self
.
imgs
[
i
],
self
.
img_hw0
[
i
],
self
.
img_hw
[
i
]
# im, hw_original, hw_resized
def
load_mosaic
(
self
,
index
):
# YOLOv5 4-mosaic loader. Loads 1 image + 3 random images into a 4-image mosaic
labels4
,
segments4
=
[],
[]
s
=
self
.
img_size
yc
,
xc
=
(
int
(
random
.
uniform
(
-
x
,
2
*
s
+
x
))
for
x
in
self
.
mosaic_border
)
# mosaic center x, y
indices
=
[
index
]
+
random
.
choices
(
self
.
indices
,
k
=
3
)
# 3 additional image indices
random
.
shuffle
(
indices
)
for
i
,
index
in
enumerate
(
indices
):
# Load image
img
,
_
,
(
h
,
w
)
=
load_image
(
self
,
index
)
# place img in img4
if
i
==
0
:
# top left
img4
=
np
.
full
((
s
*
2
,
s
*
2
,
img
.
shape
[
2
]),
114
,
dtype
=
np
.
uint8
)
# base image with 4 tiles
x1a
,
y1a
,
x2a
,
y2a
=
max
(
xc
-
w
,
0
),
max
(
yc
-
h
,
0
),
xc
,
yc
# xmin, ymin, xmax, ymax (large image)
x1b
,
y1b
,
x2b
,
y2b
=
w
-
(
x2a
-
x1a
),
h
-
(
y2a
-
y1a
),
w
,
h
# xmin, ymin, xmax, ymax (small image)
elif
i
==
1
:
# top right
x1a
,
y1a
,
x2a
,
y2a
=
xc
,
max
(
yc
-
h
,
0
),
min
(
xc
+
w
,
s
*
2
),
yc
x1b
,
y1b
,
x2b
,
y2b
=
0
,
h
-
(
y2a
-
y1a
),
min
(
w
,
x2a
-
x1a
),
h
elif
i
==
2
:
# bottom left
x1a
,
y1a
,
x2a
,
y2a
=
max
(
xc
-
w
,
0
),
yc
,
xc
,
min
(
s
*
2
,
yc
+
h
)
x1b
,
y1b
,
x2b
,
y2b
=
w
-
(
x2a
-
x1a
),
0
,
w
,
min
(
y2a
-
y1a
,
h
)
elif
i
==
3
:
# bottom right
x1a
,
y1a
,
x2a
,
y2a
=
xc
,
yc
,
min
(
xc
+
w
,
s
*
2
),
min
(
s
*
2
,
yc
+
h
)
x1b
,
y1b
,
x2b
,
y2b
=
0
,
0
,
min
(
w
,
x2a
-
x1a
),
min
(
y2a
-
y1a
,
h
)
img4
[
y1a
:
y2a
,
x1a
:
x2a
]
=
img
[
y1b
:
y2b
,
x1b
:
x2b
]
# img4[ymin:ymax, xmin:xmax]
padw
=
x1a
-
x1b
padh
=
y1a
-
y1b
# Labels
labels
,
segments
=
self
.
labels
[
index
]
.
copy
(),
self
.
segments
[
index
]
.
copy
()
if
labels
.
size
:
labels
[:,
1
:]
=
xywhn2xyxy
(
labels
[:,
1
:],
w
,
h
,
padw
,
padh
)
# normalized xywh to pixel xyxy format
segments
=
[
xyn2xy
(
x
,
w
,
h
,
padw
,
padh
)
for
x
in
segments
]
labels4
.
append
(
labels
)
segments4
.
extend
(
segments
)
# Concat/clip labels
labels4
=
np
.
concatenate
(
labels4
,
0
)
for
x
in
(
labels4
[:,
1
:],
*
segments4
):
np
.
clip
(
x
,
0
,
2
*
s
,
out
=
x
)
# clip when using random_perspective()
# img4, labels4 = replicate(img4, labels4) # replicate
# Augment
img4
,
labels4
,
segments4
=
copy_paste
(
img4
,
labels4
,
segments4
,
p
=
self
.
hyp
[
'copy_paste'
])
img4
,
labels4
=
random_perspective
(
img4
,
labels4
,
segments4
,
degrees
=
self
.
hyp
[
'degrees'
],
translate
=
self
.
hyp
[
'translate'
],
scale
=
self
.
hyp
[
'scale'
],
shear
=
self
.
hyp
[
'shear'
],
perspective
=
self
.
hyp
[
'perspective'
],
border
=
self
.
mosaic_border
)
# border to remove
return
img4
,
labels4
def
load_mosaic9
(
self
,
index
):
# YOLOv5 9-mosaic loader. Loads 1 image + 8 random images into a 9-image mosaic
labels9
,
segments9
=
[],
[]
s
=
self
.
img_size
indices
=
[
index
]
+
random
.
choices
(
self
.
indices
,
k
=
8
)
# 8 additional image indices
random
.
shuffle
(
indices
)
hp
,
wp
=
-
1
,
-
1
# height, width previous
for
i
,
index
in
enumerate
(
indices
):
# Load image
img
,
_
,
(
h
,
w
)
=
load_image
(
self
,
index
)
# place img in img9
if
i
==
0
:
# center
img9
=
np
.
full
((
s
*
3
,
s
*
3
,
img
.
shape
[
2
]),
114
,
dtype
=
np
.
uint8
)
# base image with 4 tiles
h0
,
w0
=
h
,
w
c
=
s
,
s
,
s
+
w
,
s
+
h
# xmin, ymin, xmax, ymax (base) coordinates
elif
i
==
1
:
# top
c
=
s
,
s
-
h
,
s
+
w
,
s
elif
i
==
2
:
# top right
c
=
s
+
wp
,
s
-
h
,
s
+
wp
+
w
,
s
elif
i
==
3
:
# right
c
=
s
+
w0
,
s
,
s
+
w0
+
w
,
s
+
h
elif
i
==
4
:
# bottom right
c
=
s
+
w0
,
s
+
hp
,
s
+
w0
+
w
,
s
+
hp
+
h
elif
i
==
5
:
# bottom
c
=
s
+
w0
-
w
,
s
+
h0
,
s
+
w0
,
s
+
h0
+
h
elif
i
==
6
:
# bottom left
c
=
s
+
w0
-
wp
-
w
,
s
+
h0
,
s
+
w0
-
wp
,
s
+
h0
+
h
elif
i
==
7
:
# left
c
=
s
-
w
,
s
+
h0
-
h
,
s
,
s
+
h0
elif
i
==
8
:
# top left
c
=
s
-
w
,
s
+
h0
-
hp
-
h
,
s
,
s
+
h0
-
hp
padx
,
pady
=
c
[:
2
]
x1
,
y1
,
x2
,
y2
=
(
max
(
x
,
0
)
for
x
in
c
)
# allocate coords
# Labels
labels
,
segments
=
self
.
labels
[
index
]
.
copy
(),
self
.
segments
[
index
]
.
copy
()
if
labels
.
size
:
labels
[:,
1
:]
=
xywhn2xyxy
(
labels
[:,
1
:],
w
,
h
,
padx
,
pady
)
# normalized xywh to pixel xyxy format
segments
=
[
xyn2xy
(
x
,
w
,
h
,
padx
,
pady
)
for
x
in
segments
]
labels9
.
append
(
labels
)
segments9
.
extend
(
segments
)
# Image
img9
[
y1
:
y2
,
x1
:
x2
]
=
img
[
y1
-
pady
:,
x1
-
padx
:]
# img9[ymin:ymax, xmin:xmax]
hp
,
wp
=
h
,
w
# height, width previous
# Offset
yc
,
xc
=
(
int
(
random
.
uniform
(
0
,
s
))
for
_
in
self
.
mosaic_border
)
# mosaic center x, y
img9
=
img9
[
yc
:
yc
+
2
*
s
,
xc
:
xc
+
2
*
s
]
# Concat/clip labels
labels9
=
np
.
concatenate
(
labels9
,
0
)
labels9
[:,
[
1
,
3
]]
-=
xc
labels9
[:,
[
2
,
4
]]
-=
yc
c
=
np
.
array
([
xc
,
yc
])
# centers
segments9
=
[
x
-
c
for
x
in
segments9
]
for
x
in
(
labels9
[:,
1
:],
*
segments9
):
np
.
clip
(
x
,
0
,
2
*
s
,
out
=
x
)
# clip when using random_perspective()
# img9, labels9 = replicate(img9, labels9) # replicate
# Augment
img9
,
labels9
=
random_perspective
(
img9
,
labels9
,
segments9
,
degrees
=
self
.
hyp
[
'degrees'
],
translate
=
self
.
hyp
[
'translate'
],
scale
=
self
.
hyp
[
'scale'
],
shear
=
self
.
hyp
[
'shear'
],
perspective
=
self
.
hyp
[
'perspective'
],
border
=
self
.
mosaic_border
)
# border to remove
return
img9
,
labels9
def
create_folder
(
path
=
'./new'
):
# Create folder
if
os
.
path
.
exists
(
path
):
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论