rename fix and build fixes
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
"""
|
||||
TESTCASES Core Module
|
||||
ANNOTATE Core Module
|
||||
|
||||
Core business logic for the Manual Trade Annotation UI
|
||||
"""
|
||||
|
||||
@@ -39,7 +39,7 @@ class TradeAnnotation:
|
||||
class AnnotationManager:
|
||||
"""Manages trade annotations and test case generation"""
|
||||
|
||||
def __init__(self, storage_path: str = "TESTCASES/data/annotations"):
|
||||
def __init__(self, storage_path: str = "ANNOTATE/data/annotations"):
|
||||
"""Initialize annotation manager"""
|
||||
self.storage_path = Path(storage_path)
|
||||
self.storage_path.mkdir(parents=True, exist_ok=True)
|
||||
|
||||
@@ -54,7 +54,7 @@ class TrainingSimulator:
|
||||
self.training_sessions = {}
|
||||
|
||||
# Storage for training results
|
||||
self.results_dir = Path("TESTCASES/data/training_results")
|
||||
self.results_dir = Path("ANNOTATE/data/training_results")
|
||||
self.results_dir.mkdir(parents=True, exist_ok=True)
|
||||
|
||||
logger.info("TrainingSimulator initialized")
|
||||
|
||||
Reference in New Issue
Block a user