You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
401 B
14 lines
401 B
5 months ago
|
import os
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
|
||
|
|
||
|
# 训练排序模型
|
||
|
print("**"*20+"xdeepfm_ranker_train"+"**"*20)
|
||
|
os.system('python ./ranking/subject/xdeepfm_ranker_train.py')
|
||
|
print("**"*20+"difm_ranker_train"+"**"*20)
|
||
|
os.system('python ./ranking/subject/difm_ranker_train.py')
|
||
|
print("**"*20+"bst_ranker_train"+"**"*20)
|
||
|
os.system('python ./ranking/subject/bst_ranker_train.py')
|
||
|
|