From 1d82b55579dff46957d38bc74a6d898fc0475d8a Mon Sep 17 00:00:00 2001 From: tangwang Date: Fri, 17 Oct 2025 13:25:06 +0800 Subject: [PATCH] offline tasks: fix bugs of i2i swing / hot / sessionw2v --- offline_tasks/run_all.py | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) 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