There was an error while loading. Please reload this page.
1 parent 4c8f998 commit 8aef3abCopy full SHA for 8aef3ab
1 file changed
rdagent/scenarios/kaggle/developer/runner.py
@@ -94,7 +94,9 @@ def init_develop(self, exp: KGFactorExperiment) -> KGFactorExperiment:
94
factor_name="original features", factor_description="here is the original features", factor_formulation=""
95
)
96
97
- org_data_path = Path(FACTOR_IMPLEMENT_SETTINGS.data_folder) / KAGGLE_IMPLEMENT_SETTING.competition / "valid.pkl"
+ org_data_path = (
98
+ Path(FACTOR_IMPLEMENT_SETTINGS.data_folder) / KAGGLE_IMPLEMENT_SETTING.competition / "X_valid.pkl"
99
+ )
100
with open(org_data_path, "rb") as f:
101
org_data = pickle.load(f)
102
feature_shape = org_data.shape[-1]
0 commit comments