Tested with Kedro 0.17.1 and Hydra 1.0.6.
Author: Martin Sotir
| sepal length | sepal width | petal length | petal width | class | |
|---|---|---|---|---|---|
| 5.1 | 3.5 | 1.4 | 0.2 | Iris-setosa | |
| 4.9 | 3.0 | 1.4 | 0.2 | Iris-setosa | |
| 4.7 | 3.2 | 1.3 | 0.2 | Iris-setosa | |
| 4.6 | 3.1 | 1.5 | 0.2 | Iris-setosa | |
| 5.0 | 3.6 | 1.4 | 0.2 | Iris-setosa | |
| 5.4 | 3.9 | 1.7 | 0.4 | Iris-setosa | |
| 4.6 | 3.4 | 1.4 | 0.3 | Iris-setosa | |
| 5.0 | 3.4 | 1.5 | 0.2 | Iris-setosa | |
| 4.4 | 2.9 | 1.4 | 0.2 | Iris-setosa |
| def _is_host_openstack(): | |
| product_name = Path("/sys/devices/virtual/dmi/id/product_name") | |
| return product_name.exists() and "OpenStack" in product_name.read_text() |
| """ | |
| 2 helper classes that can load Google Chrome Heap Snapshots files. | |
| Both implementations are experimentals, only tested on one example. | |
| """ | |
| import collections | |
| import json | |
| from typing import Dict, Any | |
| import numpy as np |