Spaces:
Runtime error
Runtime error
| from typing import Dict | |
| import logging | |
| logger = logging.getLogger(__file__) | |
| def add_result(result: Dict): | |
| """ | |
| Adds the result to the dataset and stores it to disk | |
| """ | |
| logger.info(f"Logging result: {result}") | |
| return |