Coverage for mlos_bench/mlos_bench/storage/__init__.py: 100%

4 statements  

« prev     ^ index     » next       coverage.py v7.5.1, created at 2024-05-06 00:35 +0000

1# 

2# Copyright (c) Microsoft Corporation. 

3# Licensed under the MIT License. 

4# 

5""" 

6Interfaces to the storage backends for OS Autotune. 

7""" 

8 

9from mlos_bench.storage.base_storage import Storage 

10from mlos_bench.storage.storage_factory import from_config 

11 

12__all__ = [ 

13 'Storage', 

14 'from_config', 

15]