Skip to content

Commit

Permalink
Add ACTGAN to models supported by Ancestral strategy
Browse files Browse the repository at this point in the history
  • Loading branch information
mikeknep committed Sep 11, 2023
1 parent 5b03a30 commit 0ccd007
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/gretel_trainer/relational/strategies/ancestral.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@ def name(self) -> str:
# TODO: remove when `gretel_model` param is removed
@property
def supported_gretel_models(self) -> list[str]:
return ["amplify"]
return ["amplify", "actgan"]

@property
def supported_model_keys(self) -> list[str]:
return ["amplify"]
return ["amplify", "actgan"]

def label_encode_keys(
self, rel_data: RelationalData, tables: dict[str, pd.DataFrame]
Expand Down

0 comments on commit 0ccd007

Please sign in to comment.