Skip to content

Commit

Permalink
black formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
sangkeun00 committed Sep 7, 2023
1 parent e5fadc4 commit 8428f86
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions examples/implicit_maml/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -204,8 +204,10 @@ def validation(self):
retain_graph=True,
gradient_accumulation=args.meta_batch_size,
)
#child_config = Config(type="darts", unroll_steps=args.inner_steps)
child_config = Config(type="cg", cg_iterations=3, cg_alpha=1., unroll_steps=args.inner_steps)
# child_config = Config(type="darts", unroll_steps=args.inner_steps)
child_config = Config(
type="cg", cg_iterations=3, cg_alpha=1.0, unroll_steps=args.inner_steps
)

outer = Outer(
name="outer",
Expand Down

0 comments on commit 8428f86

Please sign in to comment.