refactor: reorganize project structure by moving core modules and update import paths in API server
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
import joblib
|
||||
import numpy as np
|
||||
|
||||
data = joblib.load('dataset_cache/training_data.joblib')
|
||||
X, y = data['X'], data['y']
|
||||
print(f"X shape: {X.shape}")
|
||||
print(f"y shape: {y.shape}")
|
||||
Reference in New Issue
Block a user