Skip to content

Commit

Permalink
Update test_dp_cgans.py
Browse files Browse the repository at this point in the history
  • Loading branch information
sunchang0124 authored May 27, 2024
1 parent d107a3b commit 6df83fb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/test_dp_cgans.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ def test_dp_cgans():
tabular_data=pd.read_csv("resources/example_tabular_data_UCIAdult.csv")

model = DP_CGAN(
epochs=1, # number of training epochs
epochs=10, # number of training epochs
batch_size=1000, # the size of each batch
log_frequency=True,
verbose=False,
Expand All @@ -23,6 +23,7 @@ def test_dp_cgans():
discriminator_lr=2e-4,
discriminator_steps=1,
private=False,
wandb=False
)

model.fit(tabular_data)
Expand Down

0 comments on commit 6df83fb

Please sign in to comment.