Log a feast apply operation to MLflow.
(
self,
changed_objects: List[Any],
transition_types: Optional[Dict[str, str]] = None,
)
| 241 | ) |
| 242 | |
| 243 | def log_apply( |
| 244 | self, |
| 245 | changed_objects: List[Any], |
| 246 | transition_types: Optional[Dict[str, str]] = None, |
| 247 | ) -> bool: |
| 248 | """Log a feast apply operation to MLflow.""" |
| 249 | return self._logger_impl.log_apply( |
| 250 | changed_objects=changed_objects, |
| 251 | transition_types=transition_types, |
| 252 | ) |
| 253 | |
| 254 | def log_materialize( |
| 255 | self, |
no outgoing calls