Lukas

Results 56 comments of Lukas

@atong01 Thanks for documenting the problem with solution! Great to hear that the template has been effective for your papers :) > If you are interested in adding things to...

I deleted the LICENSE file because it's up to the user to choose their project license. I can see how this is confusing though since license in readme contains statement:...

None of the available in hydra optimizers support conditional search space as far as I'm aware. You should either write custom optimization pipeline using framework which supports it, or just...

My bad, thanks for letting me know! I think this feature was implemented in this PR: https://github.com/facebookresearch/hydra/pull/1909 So you can extend the search space with a custom python function which...

I don't yet have experience with conditional search space in Optuna but from what I understand, you can use the pythonic search space in `configure(cfg, trial)` method as in official...

It's probably worth mentioning this somewhere in the template readme.

@tianshuocong from what I understand, you're not sure how to access the `Trial` object in your code? 1. Create a `def configure(cfg, trial)` method somewhere in your code. As you...

We don't have a config for this in the template right now. It is possible but I have not tried wandb sweep in a while so I can't assure you...

Not possible as far as I'm aware. I think it's best to write a dedicated task / pipeline for hyperparameter search if you want to be able to resume.

It seems like there's no LSF launcher in hydra yet. You could either: 1. Try writing your own hydra launcher. Example: https://github.com/facebookresearch/hydra/tree/main/examples/plugins/example_launcher_plugin 2. Seems like lightning supports launching jobs on...