-
Notifications
You must be signed in to change notification settings - Fork 883
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move feature matrix calculation helper functions to separate file (#177)
* move helper functions to seperate file; make distributed client and cluster helper * added utils file * add note citing sklearn * import create_client_and_cluster in computational backend api file * test create_client_and_cluster * linting
- Loading branch information
Showing
4 changed files
with
273 additions
and
219 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,12 @@ | ||
# flake8: noqa | ||
from .calculate_feature_matrix import ( | ||
approximate_features, | ||
calculate_feature_matrix | ||
) | ||
from .pandas_backend import PandasBackend | ||
from .utils import ( | ||
bin_cutoff_times, | ||
calc_num_per_chunk, | ||
calculate_feature_matrix, | ||
create_client_and_cluster, | ||
get_next_chunk | ||
) | ||
from .pandas_backend import PandasBackend |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.