Skip to content

Commit

Permalink
Change inputs hoping to make it work
Browse files Browse the repository at this point in the history
  • Loading branch information
teobucci committed Mar 26, 2024
1 parent 8093120 commit e22c28e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
10 changes: 5 additions & 5 deletions hawk/processes/simulation_interactive.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,12 @@
dataset_train=train_file_path,
dataset_test=test_file_path,
target_column_name=target_name,
pcmci_test_choice="parcorr",
pcmci_max_lag=1,
pcmci_test_choice="ParCorr",
pcmci_max_lag="1",
tefs_direction="both",
tefs_use_contemporary_features=True,
tefs_max_lag_features=1,
tefs_max_lag_target=1,
tefs_use_contemporary_features="Yes",
tefs_max_lag_features="1",
tefs_max_lag_target="1",
)

print(resp)
Expand Down
5 changes: 3 additions & 2 deletions hawk/processes/wps_causal.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,15 +79,16 @@ def __init__(self):
"TEFS Use Contemporary Features",
data_type="boolean",
abstract="Choose whether to use comtemporary features in the TEFS algorithm.",
default=False,
default="Yes",
),
LiteralInput(
"tefs_max_lag_features",
"TEFS Max Lag Features",
data_type="string",
abstract="Choose the maximum lag of the features in the TEFS algorithm.",
allowed_values=[
"no_lag" "1",
"no_lag",
"1",
"2",
"3",
"4",
Expand Down

0 comments on commit e22c28e

Please sign in to comment.