File tree 3 files changed +6
-4
lines changed
3 files changed +6
-4
lines changed Original file line number Diff line number Diff line change 1
1
mkdir train_data
2
2
mkdir test_data
3
3
4
- wget -P train_data/ https://paddlerec.bj.bcebos.com/esmm/traindata.csv
5
- wget -P test_data/ https://paddlerec.bj.bcebos.com/esmm/testdata.csv
4
+ wget https://paddlerec.bj.bcebos.com/esmm/traindata_10w.csv
5
+ wget https://paddlerec.bj.bcebos.com/esmm/testdata_10w.csv
6
+ mv traindata_10w.csv train_data
7
+ mv testdata_10w.csv test_data
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ runner:
20
20
use_auc : True
21
21
train_batch_size : 1024
22
22
epochs : 10
23
- print_interval : 100
23
+ print_interval : 10
24
24
# model_init_path: "output_model/0" # init model
25
25
model_save_path : " output_model_esmm_all"
26
26
test_data_dir : " ../../../datasets/ali-ccp/test_data"
Original file line number Diff line number Diff line change @@ -123,7 +123,7 @@ def main(args):
123
123
for metric_id in range (len (metric_list_name )):
124
124
metric_str += (
125
125
metric_list_name [metric_id ] +
126
- ": {:.6f}," .format (metric_list [metric_id ].accumulate ())
126
+ ":{:.6f}, " .format (metric_list [metric_id ].accumulate ())
127
127
)
128
128
tensor_print_str = ""
129
129
if tensor_print_dict is not None :
You can’t perform that action at this time.
0 commit comments