GithubHelp home page GithubHelp logo

Comments (2)

ryan-minato avatar ryan-minato commented on June 4, 2024

I did create a small, simple demo that runs correctly, as this branch

main...minato-ellie:hydra:feature/scope

main.py

import hydra
from omegaconf import DictConfig, OmegaConf
from hydra.utils import instantiate


class A:
    def __init__(self, a1=1, a2="a2"):
        self.a1 = a1
        self.a2 = a2

    def __str__(self):
        return f"A: {self.a1}, {self.a2}"


class B:
    def __init__(self, b1=1, b2="b2"):
        self.b1 = b1
        self.b2 = b2

    def __str__(self):
        return f"B: {self.b1}, {self.b2}"
    
class C:
    def __init__(self, a: A, b: B):
        self.a = a
        self.b = b

    def __str__(self):
        return f"C: {self.a}, {self.b}"
    

@hydra.main(config_path="conf", config_name="config")
def main(cfg):
    c = instantiate(cfg.c)
    print(c)
    print(OmegaConf.to_yaml(cfg))


if __name__ == "__main__":
    main()

config.yaml

c:
  _scope_: "__main__"
  _target_: ".C"
  a:
    _target_: ".A"
    a1: 10
  b:
    _target_: ".B"
    b1: 100

Output

C: A: 10, a2, B: 100, b2
c:
  _scope_: __main__
  _target_: .C
  a:
    _target_: .A
    a1: 10
  b:
    _target_: .B
    b1: 100

from hydra.

Jasha10 avatar Jasha10 commented on June 4, 2024

Interesting. Thanks for the proposal, @minato-ellie.

from hydra.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.