Skip to content

Commit 10e3832

Browse files
committed
add make dataset to download ETT data
1 parent f414b94 commit 10e3832

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

Makefile

+7
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,13 @@ DOCKER_PARAMETERS := \
1212
init:
1313
docker build -t ${IMAGE} .
1414

15+
dataset:
16+
mkdir -p data/ETT && \
17+
wget https://raw.githubusercontent.com/zhouhaoyi/ETDataset/main/ETT-small/ETTh1.csv -P data/ETT && \
18+
wget https://raw.githubusercontent.com/zhouhaoyi/ETDataset/main/ETT-small/ETTh2.csv -P data/ETT && \
19+
wget https://raw.githubusercontent.com/zhouhaoyi/ETDataset/main/ETT-small/ETTm1.csv -P data/ETT && \
20+
wget https://raw.githubusercontent.com/zhouhaoyi/ETDataset/main/ETT-small/ETTm2.csv -P data/ETT
21+
1522
jupyter:
1623
docker run -d --rm ${DOCKER_PARAMETERS} -e HOME=/tmp -p ${PORT}:8888 ${IMAGE} \
1724
bash -c "jupyter lab --ip=0.0.0.0 --no-browser --NotebookApp.token=''"

0 commit comments

Comments
 (0)