You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, I'am very excited in your work.
What kind of gpu you are using for testing?
I tried dqn_transform with a Nvidia A100 with 40GB Ram and with default params I ran into OOM errors instantly.
Setting --replay_buffer_max_size to 125 runs properly for a while (I killed it after ~20-40 episodes, so I don't know if it runs into OOM errors in later episodes).
Running reinforce.py runs into OOM errors too, most of the time after 1-2 episodes.
The text was updated successfully, but these errors were encountered:
Thank you for your interest and sorry for my late reply. I've run the experiment on A6000 GPU (48GB). CUDA OOM error could happen due to the $O(n^2)$ computational complexity of the Transformer architecture where $n$ is the sequence length. So, you should modify the following code to adjust the sequence length in src/knapsack_env_transformer.py:
Hi, I'am very excited in your work.
What kind of gpu you are using for testing?
I tried
dqn_transform
with a Nvidia A100 with 40GB Ram and with default params I ran into OOM errors instantly.Setting
--replay_buffer_max_size
to 125 runs properly for a while (I killed it after ~20-40 episodes, so I don't know if it runs into OOM errors in later episodes).Running
reinforce.py
runs into OOM errors too, most of the time after 1-2 episodes.The text was updated successfully, but these errors were encountered: