Skip to content

Commit

Permalink
reduced size of the bm problem for preprocessing
Browse files Browse the repository at this point in the history
  • Loading branch information
Hoppe committed Oct 17, 2023
1 parent efc7637 commit aa1d76c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions benchmarks/cb/preprocessing.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ def apply_inplace_normalizer(X):


def run_preprocessing_benchmarks():
n_data_points = 20000
n_features = 100
n_data_points = 5000
n_features = 50
X = ht.random.randn(n_data_points, n_features, split=0)

apply_inplace_standard_scaler_and_inverse(X)
Expand Down

0 comments on commit aa1d76c

Please sign in to comment.