Created
April 19, 2022 08:15
-
-
Save ntakouris/a0e12116930721e81045f0c2c3dac8a0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from typing import Optional, List | |
from dataclasses import dataclass | |
@dataclass | |
class MetricsInstagram: | |
train_loss: Optional[float] = None | |
val_loss: Optional[float] = None | |
val_accuracy: Optional[float] = None |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment