Hovnatan Karapetyan

Results 13 comments of Hovnatan Karapetyan

Please run the attached code with `export PYTHONBREAKPOINT=pudb.remote.set_trace`. Then `telnet` into one of the connections. This resets the `pudb.cfg` ``` from torch.utils.data import DataLoader, Dataset class MyDataset(Dataset): def __getitem__(self, i):...

This is what I get if I comment out `except Exception: ... ` ``` > /home/hovnatan/bug/temp.py(7)__getitem__() -> return i (Pdb) > /home/hovnatan/bug/temp.py(7)__getitem__() -> return i > /home/hovnatan/bug/temp.py(7)__getitem__() -> return i...

Oh no sorry, this is what I get with the regular `pdb`, I forgot to set the environment variable.

This is the exception: ``` Source contains parsing errors: '/home/hovnatan/.config/pudb/pudb.cfg' [line 21]: 'e\n' ```

I fixed the `pudb.cfg` this was not the original problem. Then I tried modifying `breakpoint()` to `if i == 0: breakpoint()` and it worked fine. So I guess multiple simultaneous...

Also I get half, both vertically and horizontally, of the screen used without apparent reason: ![2019-07-25-121544_1902x575_scrot](https://user-images.githubusercontent.com/8426582/61857977-3eb82280-aed6-11e9-8e92-adb352d39649.png)

Ignore my last comment, it was due the `tee` redirection. But the original issue stands.

Here it is, but I don't think the problem is in the config. The best way to reproduce the problem is to install `pytorch` and run the code from my...

@libokj what if you try if __name__ == "__main__": if os.environ.get("LOCAL_RANK", 0) != 0: sys.argv.extend( [ "hydra/hydra_logging=disabled", "hydra/job_logging=disabled", ] ) main() wher `main()` is your hydra app