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
1a06bff0
Commit
1a06bff0
authored
Jun 08, 2021
by
LDOUBLEV
Browse files
delete epoch from params.txt
parent
83149576
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
5 deletions
+7
-5
test/params.txt
test/params.txt
+0
-2
test/test.sh
test/test.sh
+7
-3
No files found.
test/params.txt
View file @
1a06bff0
...
...
@@ -12,6 +12,4 @@ rec_batch_size_list: 1|6
gpu_trt_list: True|False
gpu_precision_list: fp32|fp16|int8
epoch: 10
checkpoints: None
test/test.sh
View file @
1a06bff0
...
...
@@ -15,10 +15,14 @@ if [ ${MODE} = "lite_train_infer" ];then
cd
./train_data/
&&
tar
xf icdar2015_lite.tar
&&
ln
-s
./icdar2015_lite ./icdar2015
cd
../
epoch
=
10
eval_batch_step
=
10
elif
[
${
MODE
}
=
"whole_train_infer"
]
;
then
rm
-rf
./train_data/icdar2015
wget
-nc
-P
./train_data/ https://paddleocr.bj.bcebos.com/dygraph_v2.0/test/icdar2015.tar
cd
./train_data/
&&
tar
xf icdar2015.tar
&&
cd
../
epoch
=
300
eval_batch_step
=
200
else
echo
"Do Nothing"
fi
...
...
@@ -52,8 +56,8 @@ gpu_trt_list=$(func_parser "${lines[10]}")
gpu_precision_list
=
$(
func_parser
"
${
lines
[11]
}
"
)
img_dir
=
"./train_data/icdar2015/text_localization/ch4_test_images/"
# train superparameters
epoch
=
$(
func_parser
"
${
lines
[12]
}
"
)
checkpoints
=
$(
func_parser
"
${
lines
[13]
}
"
)
#
epoch=$(func_parser "${lines[12]}")
#
checkpoints=$(func_parser "${lines[13]}")
for
train_model
in
${
train_model_list
[*]
}
;
do
...
...
@@ -99,7 +103,7 @@ for train_model in ${train_model_list[*]}; do
fi
# dataset="Train.dataset.data_dir=${train_dir} Train.dataset.label_file_list=${train_label_file} Eval.dataset.data_dir=${eval_dir} Eval.dataset.label_file_list=${eval_label_file}"
save_log
=
${
log_path
}
/
${
model_name
}
_
${
slim_trainer
}
_autocast_
${
auto_cast
}
_gpuid_
${
gpu
}
echo
${
python
}
${
launch
}
${
trainer
}
-c
${
yml_file
}
-o
Global.auto_cast
=
${
auto_cast
}
Global.save_model_dir
=
${
save_log
}
Global.use_gpu
=
${
use_gpu
}
Global.epoch
=
${
epoch
}
${
python
}
${
launch
}
${
trainer
}
-c
${
yml_file
}
-o
Global.epoch_num
=
${
epoch
}
Global.eval_batch_step
=
${
eval_batch_step
}
Global.auto_cast
=
${
auto_cast
}
Global.save_model_dir
=
${
save_log
}
Global.use_gpu
=
${
use_gpu
}
${
python
}
${
export_model
}
-c
${
yml_file
}
-o
Global.pretrained_model
=
${
save_log
}
/best_accuracy Global.save_inference_dir
=
${
save_log
}
/export_inference/
if
[
"
${
model_name
}
"
=
"det"
]
;
then
export
rec_batch_size_list
=(
"1"
)
...
...
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