Spaces:
Running
Running
File size: 657 Bytes
39db0ca fbc0479 39db0ca fbc0479 39db0ca |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 |
"""
Trackio Module for TRL Library Compatibility
This module provides the interface expected by TRL library while using our custom monitoring system
"""
# Import all functions from our custom trackio implementation
from src.trackio import (
init,
log,
finish,
log_config,
log_checkpoint,
log_evaluation_results,
get_experiment_url,
is_available,
get_monitor,
config
)
# Make all functions available at module level
__all__ = [
'init',
'log',
'finish',
'log_config',
'log_checkpoint',
'log_evaluation_results',
'get_experiment_url',
'is_available',
'get_monitor',
'config'
] |