yinanhe / ForgeryNet

[CVPR 2021 Oral] ForgeryNet: A Versatile Benchmark for Comprehensive Forgery Analysis
100 stars 4 forks source link

tar:Unexpected EOF in archive tar: Error is not recoverable: exiting now #20

Closed damengdameng closed 2 years ago

damengdameng commented 2 years ago

Hi,I have downloaded the dataset from google drive. But when I tried to unzip the Training.tar.0 by :

tar -xvf Training.tar.0

the error comes as follow: tar:Unexpected EOF in archive tar:Unexpected EOF in archive tar: Error is not recoverable: exiting now and when I try to unzip the Training.tar.2:

image image

Why this happened? How could I get the data? Whether the files in google drive broken or not? Please give me some advice, thank you.

yinanhe commented 2 years ago
cat Training.tar.* >> Training.tar
tar -xvf Training.tar
tar -xvf Validation.tar
damengdameng commented 2 years ago

cat Training.tar.* >> Training.tar tar -xvf Training.tar tar -xvf Validation.tar

It works! Thank you!