File size: 1,015 Bytes
8a35bc0
 
 
 
 
 
 
 
 
 
 
 
 
 
7c4332a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
33
34
35
# -------------------------------------------------------------------
# Pimcore
#
# This source file is available under two different licenses:
#  - GNU General Public License version 3 (GPLv3)
#  - Pimcore Commercial License (PCL)
# Full copyright and license information is available in
# LICENSE.md which is distributed with this source code.
#
#  @copyright  Copyright (c) Pimcore GmbH (http://www.pimcore.org)
#  @license    http://www.pimcore.org/license     GPLv3 and PCL
# -------------------------------------------------------------------


from abc import ABC, abstractmethod

import logging
from .training_status import TrainingStatus

logger = logging.getLogger(__name__)
logger.setLevel(logging.DEBUG)


class AbstractTrainer(ABC): 

    __training_status: TrainingStatus = TrainingStatus(); 

    @abstractmethod
    async def start_training(self):
        logger.info('start abstract trainer training')
        pass

    def get_status(self) -> TrainingStatus:
        return self.__training_status