Created
February 15, 2022 01:49
-
-
Save ywolff/406a28929bf1751652f798ddb0a3a979 to your computer and use it in GitHub Desktop.
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
import typer | |
from src.utils.mlflow_run_decorator import mlflow_run | |
@mlflow_run | |
def preprocess_data(input_folder, output_folder): | |
... | |
if __name__ == "__main__": | |
typer.run(preprocess_data) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment