Browse Source

调整训练日期

node04 4 weeks ago
parent
commit
236f5cbf50
1 changed files with 2 additions and 2 deletions
  1. 2 2
      main_tr.py

+ 2 - 2
main_tr.py

@@ -21,8 +21,8 @@ def start_train():
     max_workers = min(8, cpu_cores)  # 最大不超过8个进程
 
     from_date_end = (datetime.today() - timedelta(days=1)).strftime("%Y-%m-%d")  # 截止日改为昨天
-    # from_date_begin = "2026-03-17"  # 2026-03-17 2026-04-07 2026-04-09
-    from_date_begin = "2026-04-07"
+    # from_date_begin = "2026-03-17"  # 2026-03-17 2026-04-07 2026-04-09 2026-04-15
+    from_date_begin = "2026-04-09"
 
     print(f"训练时间范围: {from_date_begin} 到 {from_date_end}")