tobeyond

Results 18 comments of tobeyond

Not sure. How do I know that? I proceeded with `conda install pytorch torchvision cpuonly -c pytorch` Now I get this: ``` Using cuda False Traceback (most recent call last):...

I also tried adding `--device cpu` and `--gpu_ids -1` to my command line but it didn't work. Nor did changing `torch._C._cuda_setDevice(device)` to `torch._C._cuda_setDevice(-1)`.

I'm on Windows 10 with 16GB of RAM and it's Intel Core i7. Do you think it works?

I don't have a dedicated graphics card. Is it mandatory?

Thank you very much for the clarification. I've never used google colab and I'm a little confused here. Does anyone have a step-by-step explanation on how to run it there?

I tested on Windows with headless=False. The script is not pressing the button to login. I clicked manually and it worked fine, but it 's still an issue.

Well, I found the issue. `chrome_options.add_argument("--lang=en")` was missing. My pinterest was not in english so `driver.find_elements_by_xpath("//*[contains(text(), 'Log in')]")` was not doing the trick. It's working fine now that I changed...

Thank you. It is mainly working now with the right functions, except the `futures_cancel_orders()` method. It returns: > > CANCEL = client.futures_cancel_order(symbol=pair, origClientOrderIdList=cancel_list) > > > File ~\...\virtual_binance\lib\site-packages\binance\client.py:5898, in Client.futures_cancel_order(self,...

Nevermind, I found out I needed to parse the list and it worked.