Skip to content

Instantly share code, notes, and snippets.

@ntakouris
Created April 19, 2022 08:15
Show Gist options
  • Save ntakouris/a0e12116930721e81045f0c2c3dac8a0 to your computer and use it in GitHub Desktop.
Save ntakouris/a0e12116930721e81045f0c2c3dac8a0 to your computer and use it in GitHub Desktop.
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