Jordan Schneider

Results 12 comments of Jordan Schneider

Okay I clearly missed a bunch of tests, working on that. Not sure what's up with mypy not thinking Literal exists.

The literal thing was because setup.cfg sets the mypy version to 3.6 by default. I had a legitimate problem where I need to import from `typing_extensions` before 3.8, which I...

Looks like I've ironed out all the python version issues.

> Hi, I'm the one who originally opened #422. So I'm very happy you are doing this! > > I'm obviously not an official member of OmegaConf, but I thought...

All of the CI lints are failing due to ``` nox > [2022-03-14 15:46:08,598] mypy . --strict --install-types --non-interactive nox > [2022-03-14 15:46:23,545] Command mypy . --strict --install-types --non-interactive failed...

I think it was mostly outdated local versions of tools. The pre-commit version of black and the current version used by CircleCI also disagreed, so I updated the pre-commit version...

dataclasses would be an improvement, but I would still have to repeat the setup and teardown. Let me be more specific. I currently have to do this: ```python def f(x:...

defopt handles list arguments/options sanely. If you want to have a list option in fire, you need to write it as a python style string In fire: `python file.py --list...

(I have switch to using argh because I decided I really wanted the full power of argparse and am willing to pay the cost of writing decorators. Feel free to...

What optimizer/learning rate are you using? If your effective learning rate is too high, you might just be diverging.