-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[MLOP-635] Rebase Incremental Job/Interval Run branch for test on sel…
…ected feature sets (#278) * Add interval branch modifications. * Add interval_runs notebook. * Add tests. * Apply style (black, flack8 and mypy). * Fix tests. * Change version to create package dev.
- Loading branch information
Showing
58 changed files
with
4,738 additions
and
389 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 |
---|---|---|
|
@@ -47,6 +47,7 @@ coverage.xml | |
*.cover | ||
.hypothesis/ | ||
*cov.xml | ||
test_folder/ | ||
|
||
# Translations | ||
*.mo | ||
|
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
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
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
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
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
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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
"""Allowed windows units and lengths in seconds.""" | ||
|
||
ALLOWED_WINDOWS = { | ||
"second": 1, | ||
"seconds": 1, | ||
"minute": 60, | ||
"minutes": 60, | ||
"hour": 3600, | ||
"hours": 3600, | ||
"day": 86400, | ||
"days": 86400, | ||
"week": 604800, | ||
"weeks": 604800, | ||
"year": 29030400, | ||
"years": 29030400, | ||
} |
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,4 +1,11 @@ | ||
"""Dataframe optimization components regarding Butterfree.""" | ||
from butterfree.dataframe_service.incremental_strategy import IncrementalStrategy | ||
from butterfree.dataframe_service.partitioning import extract_partition_values | ||
from butterfree.dataframe_service.repartition import repartition_df, repartition_sort_df | ||
|
||
__all__ = ["repartition_df", "repartition_sort_df"] | ||
__all__ = [ | ||
"extract_partition_values", | ||
"IncrementalStrategy", | ||
"repartition_df", | ||
"repartition_sort_df", | ||
] |
Oops, something went wrong.