Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
sotetsuk committed Jun 5, 2024
1 parent 7b9daf2 commit 3db1e1b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions pgx/bridge_bidding.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,17 +66,17 @@ def split_data(data, prefix, base_i=0):
)

os.makedirs(download_dir, exist_ok=True)

Check warning on line 68 in pgx/bridge_bidding.py

View check run for this annotation

Codecov / codecov/patch

pgx/bridge_bidding.py#L68

Added line #L68 was not covered by tests

train_small_fname = os.path.join(download_dir, "dds_results_2.5M.npy")
if not os.path.exists(train_small_fname):
_download(DDS_RESULTS_TRAIN_SMALL_URL, train_small_fname)
split_data(train_small_fname, "train")
split_data(train_small_fname, "train")

Check warning on line 73 in pgx/bridge_bidding.py

View check run for this annotation

Codecov / codecov/patch

pgx/bridge_bidding.py#L70-L73

Added lines #L70 - L73 were not covered by tests

train_large_fname = os.path.join(download_dir, "dds_results_10M.npy")
if not os.path.exists(train_large_fname):
_download(DDS_RESULTS_TRAIN_LARGE_URL, train_large_fname)
split_data(train_large_fname, "train", base_i=25)
split_data(train_large_fname, "train", base_i=25)

Check warning on line 78 in pgx/bridge_bidding.py

View check run for this annotation

Codecov / codecov/patch

pgx/bridge_bidding.py#L75-L78

Added lines #L75 - L78 were not covered by tests

test_fname = os.path.join(download_dir, "dds_results_500K.npy")
if not os.path.exists(test_fname):
_download(DDS_RESULTS_TEST_URL, test_fname)
Expand Down

0 comments on commit 3db1e1b

Please sign in to comment.