Slide 21
Slide 21 text
コンペ参加者の作業 (2/2)
ルールに従って学習や推論のコードを書く
● コンペごとにルールが実装されている
● たとえば「Trainer クラスと Predictor クラスを実装してください」など
class Predictor:
def __init__(self, model_dir: str):
# Load trained model
# ...
def predict(x: Dict):
# ...
class Trainer:
def __init__(self, model_dir: str):
# Load trained model
# ...
def train(x: Dict):
# ...