deep-learning-bitcoin
deep-learning-bitcoin copied to clipboard
ValueError: threshold must be non-NAN, try sys.maxsize for untruncated representation`
localhost:/home/user/deep-learning-bitcoin # docker run -it --name dlb -v $PWD:/app dlb /bin/bash
...
root@820a763c147a:/app# python3 data_generator.py /tmp/btc-trading-patterns/ /tmp/coinbaseUSD.csv 1
Traceback (most recent call last):
File "data_generator.py", line 14, in
Change np.set_printoptions(threshold=np.nan) to np.set_printoptions(threshold=sys.maxsize) ?
same issue
Change np.set_printoptions(threshold=np.nan) to np.set_printoptions(threshold=sys.maxsize) ?
Thanks!