14 lines
409 B
Python
14 lines
409 B
Python
from app.models.training import TrainingStatus
|
|
|
|
|
|
class TrainingMonitor:
|
|
async def get_status(self) -> TrainingStatus:
|
|
# Implementation for parsing tqdm output
|
|
# This is a placeholder - actual implementation needed
|
|
pass
|
|
|
|
async def get_log(self):
|
|
# Implementation for getting recent log entries
|
|
# This is a placeholder - actual implementation needed
|
|
pass
|