Shortcuts

Source code for mmfewshot.utils.local_seed

# Copyright (c) OpenMMLab. All rights reserved.
from contextlib import contextmanager
from typing import Optional

import numpy as np


[docs]@contextmanager def local_numpy_seed(seed: Optional[int] = None) -> None: """Run numpy codes with a local random seed. If seed is None, the default random state will be used. """ state = np.random.get_state() if seed is not None: np.random.seed(seed) try: yield finally: np.random.set_state(state)
Read the Docs v: latest
Versions
latest
stable
Downloads
pdf
html
epub
On Read the Docs
Project Home
Builds

Free document hosting provided by Read the Docs.