vt-vl-lab / FGVC

[ECCV 2020] Flow-edge Guided Video Completion
Other
1.55k stars 263 forks source link

server for weights.zip and data.zip seems unreachable #57

Closed PyMarc2 closed 2 years ago

PyMarc2 commented 3 years ago

I used wget.exe version 1.21.1 (latest) on Windows.

PS C:\Users\marc-\Downloads> .\wget.exe https://filebox.ece.vt.edu/~chengao/FGVC/data.zip
--2021-08-16 20:39:46--  https://filebox.ece.vt.edu/~chengao/FGVC/data.zip
Resolving filebox.ece.vt.edu (filebox.ece.vt.edu)... 128.173.88.43
Connecting to filebox.ece.vt.edu (filebox.ece.vt.edu)|128.173.88.43|:443... failed: Unknown error.
Retrying.

Anyone had this issue?

PyMarc2 commented 3 years ago

Even with alternative command, the server doesn't seem to respond.

PS C:\Users\marc-> $client = new-object System.Net.WebClient
PS C:\Users\marc-> $client.DownloadFile("https://filebox.ece.vt.edu/~chengao/FGVC/data.zip","C:\Users\marc-\Downloads\data.zip")

ERROR
Exception lors de l'appel de «DownloadFile» avec «2» argument(s): «Impossible de se connecter au serveur distant»
Au caractère Ligne:1 : 1
+ $client.DownloadFile("https://filebox.ece.vt.edu/~chengao/FGVC/data.z ...

which translates to couldn't connect to the server.

PyMarc2 commented 3 years ago

Tried on linux too with the commands in the .sh file. Returns a server connection unavailable response.

PyMarc2 commented 3 years ago

Is this repository dead ?

lec0dex commented 3 years ago

Please, try to download directly from the browser.

gaochen315 commented 3 years ago

Hi PyMarc2,

It seems like a certificate issue with our VT filebox. I added a --no-check-certificate flag to the command. Could you try ./download_data_weights.sh again and see if the problem is solved? Thanks.