This file contains hidden or 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
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>FUSE Storage Scale Benchmark Report</title> | |
| <script> | |
| /** | |
| * Skipped minification because the original files appears to be already minified. | |
| * Original file: /npm/chart.js@4.4.6/dist/chart.umd.js |
This file contains hidden or 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
| def log_run(gridsearch: sklearn.GridSearchCV, experiment_name: str, model_name: str, run_index: int, conda_env, tags={}): | |
| """Logging of cross validation results to mlflow tracking server | |
| Args: | |
| experiment_name (str): experiment name | |
| model_name (str): Name of the model | |
| run_index (int): Index of the run (in Gridsearch) | |
| conda_env (str): A dictionary that describes the conda environment (MLFlow Format) | |
| tags (dict): Dictionary of extra data and tags (usually features) |
This file contains hidden or 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 kfp | |
| @kfp.components.func_to_container_op | |
| def print_func(param: int): | |
| print(str(param)) | |
| @kfp.components.func_to_container_op | |
| def list_func(param: int) -> list: | |
| return list(range(param)) |