Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
wangsen
paddle_dbnet
Commits
3e11efa7
Commit
3e11efa7
authored
Jul 27, 2021
by
LDOUBLEV
Browse files
fix mem leak
parent
6887f457
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
22 deletions
+13
-22
ppocr/data/simple_dataset.py
ppocr/data/simple_dataset.py
+12
-21
ppocr/modeling/architectures/distillation_model.py
ppocr/modeling/architectures/distillation_model.py
+1
-1
No files found.
ppocr/data/simple_dataset.py
View file @
3e11efa7
...
...
@@ -14,7 +14,6 @@
import
numpy
as
np
import
os
import
random
import
traceback
from
paddle.io
import
Dataset
from
.imaug
import
transform
,
create_operators
...
...
@@ -46,7 +45,6 @@ class SimpleDataSet(Dataset):
self
.
seed
=
seed
logger
.
info
(
"Initialize indexs of datasets:%s"
%
label_file_list
)
self
.
data_lines
=
self
.
get_image_info_list
(
label_file_list
,
ratio_list
)
self
.
check_data
()
self
.
data_idx_order_list
=
list
(
range
(
len
(
self
.
data_lines
)))
if
self
.
mode
==
"train"
and
self
.
do_shuffle
:
self
.
shuffle_data_random
()
...
...
@@ -103,18 +101,25 @@ class SimpleDataSet(Dataset):
def
__getitem__
(
self
,
idx
):
file_idx
=
self
.
data_idx_order_list
[
idx
]
data
=
self
.
data_lines
[
file_idx
]
data
_line
=
self
.
data_lines
[
file_idx
]
try
:
data_line
=
data_line
.
decode
(
'utf-8'
)
substr
=
data_line
.
strip
(
"
\n
"
).
split
(
self
.
delimiter
)
file_name
=
substr
[
0
]
label
=
substr
[
1
]
img_path
=
os
.
path
.
join
(
self
.
data_dir
,
file_name
)
data
=
{
'img_path'
:
img_path
,
'label'
:
label
}
if
not
os
.
path
.
exists
(
img_path
):
raise
Exception
(
"{} does not exist!"
.
format
(
img_path
))
with
open
(
data
[
'img_path'
],
'rb'
)
as
f
:
img
=
f
.
read
()
data
[
'image'
]
=
img
data
[
'ext_data'
]
=
self
.
get_ext_data
()
outs
=
transform
(
data
,
self
.
ops
)
except
:
error_meg
=
traceback
.
format_exc
()
except
Exception
as
e
:
self
.
logger
.
error
(
"When parsing
file {} and label
{}, error happened with msg: {}"
.
format
(
data
[
'img_path'
],
data
[
'label'
],
error_meg
))
"When parsing
line
{}, error happened with msg: {}"
.
format
(
data
_line
,
e
))
outs
=
None
if
outs
is
None
:
# during evaluation, we should fix the idx to get same results for many times of evaluation.
...
...
@@ -125,17 +130,3 @@ class SimpleDataSet(Dataset):
def
__len__
(
self
):
return
len
(
self
.
data_idx_order_list
)
def
check_data
(
self
):
new_data_lines
=
[]
for
data_line
in
self
.
data_lines
:
data_line
=
data_line
.
decode
(
'utf-8'
)
substr
=
data_line
.
strip
(
"
\n
"
).
strip
(
"
\r
"
).
split
(
self
.
delimiter
)
file_name
=
substr
[
0
]
label
=
substr
[
1
]
img_path
=
os
.
path
.
join
(
self
.
data_dir
,
file_name
)
if
os
.
path
.
exists
(
img_path
):
new_data_lines
.
append
({
'img_path'
:
img_path
,
'label'
:
label
})
else
:
self
.
logger
.
info
(
"{} does not exist!"
.
format
(
img_path
))
self
.
data_lines
=
new_data_lines
\ No newline at end of file
ppocr/modeling/architectures/distillation_model.py
View file @
3e11efa7
...
...
@@ -46,7 +46,7 @@ class DistillationModel(nn.Layer):
pretrained
=
model_config
.
pop
(
"pretrained"
)
model
=
BaseModel
(
model_config
)
if
pretrained
is
not
None
:
model
=
load_pretrained_params
(
model
,
pretrained
)
load_pretrained_params
(
model
,
pretrained
)
if
freeze_params
:
for
param
in
model
.
parameters
():
param
.
trainable
=
False
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment