Davide Macario
Davide Macario
@cooper-him I would also wrap the `del` statements in a try-except, as `checkpoint` may not be defined. In any case, I tested the code (training a model with the same...
I'm having a related issue as well: when I load distant.nvim the diagnostics icons that I set in my config to appear next to the line numbers are not shown....
Hi there! I have been stuck on a similar problem (trying to pass a Lua function to `g:mkdp_browserfunc`) for a couple hours today, but I came up with a solution....
I don't seem to face the same issue, which Python version are you on? I am on Python 3.11, Torch 2.0.1, MacOS 14.4.1 (M1 Pro). All I get is this...
> > Facing the same issue. Any fix as of yet? @Abdurrahheem Is there any way to make it work with mps backend? > > May be to change torch...
> Python version is: `3.10.10` I just ran the code with Python 3.10 and Torch 2.0.1 with no issue... Just the warning I mentioned above.
> The two tallest spikes in GPU memory usage, are when I am running the train_gpt2.py code through mps, which is > followed by the BUS error. To me, this...
Also, AFAIK there are some methods to overcome the MPS memory limitations (MacOS will never assign the total system memory to the GPU only), like modifying the value of the...
What do you think about adding entries for commonly ignored files? Something along the lines of [this](https://github.com/github/gitignore/blob/main/Python.gitignore).
I also tried to replace the assignment with the following: ```python logits = torch.where(logits >= v[:, [-1]], logits, -float("Inf")) ``` and again, it works on CPU but not on MPS...