Skip to content

Commit d768134

Browse files
committed
stooq data and other updates
1 parent dff699e commit d768134

File tree

6 files changed

+70
-289
lines changed

6 files changed

+70
-289
lines changed

21_gans_for_synthetic_time_series/02_TimeGAN_TF2.ipynb

+61-282
Large diffs are not rendered by default.

21_gans_for_synthetic_time_series/03_evaluating_synthetic_data.ipynb

+3-3
Original file line numberDiff line numberDiff line change
@@ -1083,9 +1083,9 @@
10831083
],
10841084
"metadata": {
10851085
"kernelspec": {
1086-
"display_name": "Python [conda env:ml4t-dl]",
1086+
"display_name": "Python 3",
10871087
"language": "python",
1088-
"name": "conda-env-ml4t-dl-py"
1088+
"name": "python3"
10891089
},
10901090
"language_info": {
10911091
"codemirror_mode": {
@@ -1097,7 +1097,7 @@
10971097
"name": "python",
10981098
"nbconvert_exporter": "python",
10991099
"pygments_lexer": "ipython3",
1100-
"version": "3.7.7"
1100+
"version": "3.8.5"
11011101
},
11021102
"toc": {
11031103
"base_numbering": 1,

data/README.md

+1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ A few sample data sources that we will source and work with include, among other
2020
There are several notebooks that guide you through the data sourcing process:
2121
- The notebook [create_datasets](create_datasets.ipynb) contains information on downloading the **Quandl Wiki stock prices** and a few other sources that we use throughout the book, such as S&P500 benchmark, and US equities metadata.
2222
- The notebook [create_stooq_data](create_stooq_data.ipynb) demonstrates how to download historical prices for Japanese stocks and US stocks and ETFs from STOOQ.
23+
> Please note that STOOQ will disable automatic downloads and require CAPTCHA starting Dec 10, 2020 so that the code that downloads and unpacks the zip files will no longer work; please navigate to their website for manual download.
2324
- The notebook [create_yelp_review_data](create_yelp_review_data.ipynb) combines text data with additional numerical features for sentiment analysis from Yelp user reviews.
2425
- The notebook [glove_word_vectors](glove_word_vectors.ipynb) downloads pre-trained word vectors.
2526
- The notebook [twitter_sentiment](twitter_sentiment.ipynb) downloads and extracts twitter data for sentiment analysis.

data/create_stooq_data.ipynb

+4-2
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,9 @@
9999
"cell_type": "markdown",
100100
"metadata": {},
101101
"source": [
102-
"> Note that the below downloading details may change at any time as Stooq updates their website; if you encounter errors, please inspect their website and raise a GitHub issue to let us know so we can update the information."
102+
"> Note that the below downloading details may change at any time as Stooq updates their website; if you encounter errors, please inspect their website and raise a GitHub issue to let us know so we can update the information.\n",
103+
"\n",
104+
"> Update 12/2020: please note that STOOQ will disable automatic downloads and require CAPTCHA starting Dec 10, 2020 so that the code that downloads and unpacks the zip files will no longer work; please navigate to their website using the below link for manual download. "
103105
]
104106
},
105107
{
@@ -1338,4 +1340,4 @@
13381340
},
13391341
"nbformat": 4,
13401342
"nbformat_minor": 4
1341-
}
1343+
}

installation/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ Now you are running a shell inside the container and can access the various [con
143143
| 4 | 17-22* | ml4t-dl |
144144
| all | throughout | ml4t-zipline
145145
146-
> *the Deep Reinforcement Learning examples require TensorFlow 2.2, which currently is only available via `conda` for GPUC; the notebooks contain instructions for upgrading via `pip`.
146+
> the Deep Reinforcement Learning examples require TensorFlow 2.2, which currently is only available for Linux via `conda` for GPU; the notebooks contain instructions for upgrading via `pip`. Check [here](https://anaconda.org/anaconda/tensorflow) for current CPU and [here](https://anaconda.org/anaconda/tensorflow-gpu) for current GPU version support.
147147
148148
- You can switch to another environment using `conda activate <env_name>`.
149149
- Alternatively, you can switch from one environment to another from the jupyter notebook or jupyter lab thanks to the [nb_conda_kernels](https://github.com/Anaconda-Platform/nb_conda_kernels) extension (see below).

installation/linux/ml4t-dl-gpu.yml

-1
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,6 @@ dependencies:
245245
- ta-lib-base=0.4.0
246246
- tensorboard=2.2.2
247247
- tensorboard-plugin-wit=1.6.0
248-
- tensorflow=2.2.0
249248
- tensorflow-base=2.2.0
250249
- tensorflow-datasets=1.2.0
251250
- tensorflow-estimator=2.2.0

0 commit comments

Comments
 (0)