-
Notifications
You must be signed in to change notification settings - Fork 752
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
failed to download data or train #119
Comments
I have get the trade paires and volumes." pair price volume |
I have the same problem |
I made it work by cloning the dev repo, change the exchange in config file to binance, changing the dates in base config and train_package NNAgent config to a shorter frame such as 2019/1 -> 2019/3 |
This is the reason and solution: |
Same here. How to set resolution to auto? No resolution field in net_config.json.
but looks like I can only shorten the start_date and end_date in the config to run the download. (I tried 2019/1/1 -> 2019/3/1 which is downloadable) |
Same here. I also tried shortening the period, and it worked. What would you think would be the best way to download for a longer period? To download manually multiple times, each time for a short period? |
If you follow the code, you will find that there is a update_data method in the globaldatamatrix.py which will alter the end and period. The reason I think is that the local database have the former data and it will influence the parse of the current data you want to training. This is a bug of this code I think. Solution: Just delete the Data.db, then training the data online!!! or make sure the data of the asset that u want training is not appeared in the Data.db. This is my thinking, and it run well in my machine, hope you guys will have a better way to solve this. |
After doing the things I said above, I can train the period as long as I want. |
Hi everyone, can anybody tell me where I can get the data to run this repository please? I'm using "python main.py --mode=download_data" and it gets stuck after 121K. Thanks. |
Can anyone offer a complete Data.db? I think the main cause of this error is due to my internet connection. Even I followed the instructions mentioned above. |
there is one data.db at release |
I have experienced this TypeError "TypeError: string indices must be integers" with recent dev branch repo. My json config market is set 'binance'. So, I spotted there is market default hardcoded to poloniex in datamatrices.py in DataMatrices class in init constructor. This market value is not defined so it is not overwritten in main.py in line 71. there shall be market value added to read from config. |
Hello everyone, can anyone download the data from 2018 to 2020? I may not be able to download it due to network problems. If someone downloads it, can you share it, thank you. |
When I download data or train without downloading data, there is a error " File "/home/ubuntu/PGPortfolio/pgportfolio/marketdata/globaldatamatrix.py", line 199, in __fill_data
if c["date"] > 0:TypeError: string indices must be integers". What can I do?
The text was updated successfully, but these errors were encountered: