Skip to content

Commit ea8790b

Browse files
committed
updated all urls to HKUST server
1 parent d3f72b1 commit ea8790b

5 files changed

+21
-12
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,18 @@ This repository contains the code and models for the following paper:
44

55

66
**[Peeking into the Future: Predicting Future Person Activities and Locations in Videos](https://arxiv.org/abs/1902.03748)** \
7-
[Junwei Liang](https://www.cs.cmu.edu/~junweil/),
7+
[Junwei Liang](https://junweiliang.me/),
88
[Lu Jiang](http://www.lujiang.info/),
99
[Juan Carlos Niebles](http://www.niebles.net/),
1010
[Alexander Hauptmann](https://www.cs.cmu.edu/~alex/),
1111
[Li Fei-Fei](http://vision.stanford.edu/feifeili/) \
1212
[CVPR 2019](http://cvpr2019.thecvf.com/)
1313

14-
You can find more information at our [Project Page](https://next.cs.cmu.edu/).\
14+
You can find more information at our [Project Page](https://precognition.team/next).\
1515
*Please note that this is not an officially supported Google product.*
1616

1717
+ *[11/2022] CMU server is down. You can replace all `https://next.cs.cmu.edu` with `https://precognition.team/next/` to download necessary resources.*
18-
+ *[02/2020] [New paper](https://next.cs.cmu.edu/multiverse/) on multi-future trajectory prediction is accepted by CVPR 2020.*
18+
+ *[02/2020] [New paper](https://precognition.team/next/multiverse/) on multi-future trajectory prediction is accepted by CVPR 2020.*
1919

2020
If you find this code useful in your research then please cite
2121

TESTING.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
## Step 1: Prepare the data and model
33
We experimented on the [ActEv dataset](https://actev.nist.gov) and the
44
[ETH & UCY dataset](https://graphics.cs.ucy.ac.cy/research/downloads/crowd-data).
5-
The original ActEv annotations can be downloaded from [here](https://next.cs.cmu.edu/data/actev-v1-drop4-yaml.tgz).
5+
The original ActEv annotations can be downloaded from [here](https://precognition.team/next/data/actev-v1-drop4-yaml.tgz).
66
*Please do obtain the data copyright and download the raw videos from their website.*
7-
You can download our prepared features from the [project page](https://next.cs.cmu.edu)
7+
You can download our prepared features from the [project page](https://precognition.team/next/)
88
by running the script `bash scripts/download_prepared_data.sh`.
99
This will download the following data,
1010
and will require about 31 GB of disk space:

TRAINING.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
## Step 1: Prepare the data and model
33
We experimented on the [ActEv dataset](https://actev.nist.gov) and
44
the [ETH & UCY dataset](https://graphics.cs.ucy.ac.cy/research/downloads/crowd-data).
5-
The original ActEv annotations can be downloaded from [here](https://next.cs.cmu.edu/data/actev-v1-drop4-yaml.tgz).
5+
The original ActEv annotations can be downloaded from [here](https://precognition.team/next/data/actev-v1-drop4-yaml.tgz).
66
*Please do obtain the data copyright and download the raw videos from their website.*
7-
You can download our prepared features from the [project page](next.cs.cmu.edu)
7+
You can download our prepared features from the [project page](https://precognition.team/next/)
88
by running the script `bash scripts/download_prepared_data.sh`.
99
This will download the following data, and will require
1010
about 31 GB of disk space:

scripts/download_prepared_data.sh

+8-3
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,14 @@
1818

1919
mkdir -p next-data
2020

21-
wget https://next.cs.cmu.edu/data/final_annos.tgz -O next-data/final_annos.tgz
22-
wget https://next.cs.cmu.edu/data/person_features/actev_personboxfeat.tgz -O next-data/actev_personboxfeat.tgz
23-
wget https://next.cs.cmu.edu/data/person_features/ethucy_personboxfeat.tgz -O next-data/ethucy_personboxfeat.tgz
21+
# [02/2023] CMU server is down. Switching to our HKUST (Guangzhou) Precognition lab server
22+
#wget https://next.cs.cmu.edu/data/final_annos.tgz -O next-data/final_annos.tgz
23+
#wget https://next.cs.cmu.edu/data/person_features/actev_personboxfeat.tgz -O next-data/actev_personboxfeat.tgz
24+
#wget https://next.cs.cmu.edu/data/person_features/ethucy_personboxfeat.tgz -O next-data/ethucy_personboxfeat.tgz
25+
26+
wget https://precognition.team/next/data/final_annos.tgz -O next-data/final_annos.tgz
27+
wget https://precognition.team/next/data/person_features/actev_personboxfeat.tgz -O next-data/actev_personboxfeat.tgz
28+
wget https://precognition.team/next/data/person_features/ethucy_personboxfeat.tgz -O next-data/ethucy_personboxfeat.tgz
2429

2530
# extract and delete the tar files
2631
cd next-data

scripts/download_single_models.sh

+6-2
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,12 @@
1818

1919
mkdir -p next-models
2020

21-
wget https://next.cs.cmu.edu/data/pretrained_models/actev_single_model.tar -O next-models/actev_single_model.tar
22-
wget https://next.cs.cmu.edu/data/pretrained_models/ethucy_single_model.tar -O next-models/ethucy_single_model.tar
21+
# [02/2023] CMU server is down. Switching to our HKUST (Guangzhou) Precognition lab server
22+
#wget https://next.cs.cmu.edu/data/pretrained_models/actev_single_model.tar -O next-models/actev_single_model.tar
23+
#wget https://next.cs.cmu.edu/data/pretrained_models/ethucy_single_model.tar -O next-models/ethucy_single_model.tar
24+
25+
wget https://precognition.team/next/data/pretrained_models/actev_single_model.tar -O next-models/actev_single_model.tar
26+
wget https://precognition.team/next/data/pretrained_models/ethucy_single_model.tar -O next-models/ethucy_single_model.tar
2327

2428
# extract and delete the tar files
2529
cd next-models

0 commit comments

Comments
 (0)