wandb.py 547 B

123456789101112131415
  1. # Copyright (c) Meta Platforms, Inc. and affiliates.
  2. # This software may be used and distributed according to the terms of the Llama 2 Community License Agreement.
  3. from typing import List, Optional
  4. from dataclasses import dataclass, field
  5. @dataclass
  6. class wandb_config:
  7. project: str = 'llama_recipes' # wandb project name
  8. entity: Optional[str] = None # wandb entity name
  9. job_type: Optional[str] = None
  10. tags: Optional[List[str]] = None
  11. group: Optional[str] = None
  12. notes: Optional[str] = None
  13. mode: Optional[str] = None