mirror of
https://github.com/hzwer/ECCV2022-RIFE.git
synced 2025-12-16 16:37:51 +01:00
Update README
This commit is contained in:
@@ -93,8 +93,8 @@ We will release our training and benchmark validation code soon.
|
|||||||
**Vimeo90K**
|
**Vimeo90K**
|
||||||
Download [Vimeo90K dataset](http://toflow.csail.mit.edu/) at ./vimeo_interp_test
|
Download [Vimeo90K dataset](http://toflow.csail.mit.edu/) at ./vimeo_interp_test
|
||||||
```
|
```
|
||||||
$ python3 Vimeo90K_benchmark.py
|
$ python3 benchmark/Vimeo90K_benchmark.py
|
||||||
(You will get 35.695PSNR and 0.9788SSIM)
|
(Final result: "Avg PSNR: 35.695 SSIM: 0.9788")
|
||||||
```
|
```
|
||||||
|
|
||||||
## Citation
|
## Citation
|
||||||
|
|||||||
@@ -37,4 +37,4 @@ for i in f:
|
|||||||
psnr = -10 * math.log10(((I1 - mid) * (I1 - mid)).mean())
|
psnr = -10 * math.log10(((I1 - mid) * (I1 - mid)).mean())
|
||||||
psnr_list.append(psnr)
|
psnr_list.append(psnr)
|
||||||
ssim_list.append(ssim)
|
ssim_list.append(ssim)
|
||||||
print(np.mean(psnr_list), np.mean(ssim_list))
|
print("Avg PSNR: {} SSIM: {}".format(np.mean(psnr_list), np.mean(ssim_list)))
|
||||||
|
|||||||
Reference in New Issue
Block a user