| 123456789101112131415 | # Copyright (c) Meta Platforms, Inc. and affiliates.# This software may be used and distributed according to the terms of the Llama 2 Community License Agreement.from typing import List, Optionalfrom dataclasses import dataclass, field@dataclassclass wandb_config:    project: str = 'llama_recipes' # wandb project name    entity: Optional[str] = None # wandb entity name    job_type: Optional[str] = None    tags: Optional[List[str]] = None    group: Optional[str] = None    notes: Optional[str] = None    mode: Optional[str] = None
 |