Skip to content

Instantly share code, notes, and snippets.

View jgbos's full-sized avatar

Justin Goodwin jgbos

  • MIT Lincoln Laboratory
  • Cambridge
View GitHub Profile
@jgbos
jgbos / workflows.py
Last active April 14, 2022 00:39
Base class definition of a workflow
from abc import abstractmethod
from collections import defaultdict
from typing import Any, Dict, List, Mapping, Optional, Sequence, Union
from hydra.core.utils import JobReturn
from hydra_zen import make_config
from .hydra import launch, zen