diff --git a/offline_tasks/run_all.py b/offline_tasks/run_all.py index d8f1cbe..27e7092 100755 --- a/offline_tasks/run_all.py +++ b/offline_tasks/run_all.py @@ -158,19 +158,19 @@ def main(): success_count += 1 # 4. Content-based similarity - if not args.only_swing and not args.only_w2v and not args.only_deepwalk and not args.only_interest: - logger.info("\n" + "="*80) - logger.info("Task 4: Running Content-based similarity") - logger.info("="*80) - total_count += 1 - script_args = [ - '--top_n', str(args.top_n), - '--method', 'hybrid' - ] - if args.debug: - script_args.append('--debug') - if run_script('i2i_content_similar.py', script_args): - success_count += 1 +# if not args.only_swing and not args.only_w2v and not args.only_deepwalk and not args.only_interest: +# logger.info("\n" + "="*80) +# logger.info("Task 4: Running Content-based similarity") +# logger.info("="*80) +# total_count += 1 +# script_args = [ +# '--top_n', str(args.top_n), +# '--method', 'hybrid' +# ] +# if args.debug: +# script_args.append('--debug') +# if run_script('i2i_content_similar.py', script_args): +# success_count += 1 # 兴趣点聚合任务 if not args.skip_interest: -- libgit2 0.21.2