hexuan21 commited on
Commit
f4d12f0
1 Parent(s): b6bae41

update utils.py

Browse files
Files changed (1) hide show
  1. utils.py +3 -0
utils.py CHANGED
@@ -57,12 +57,14 @@ Below are the metrics for each dimension, raw score of these metrics is [0,1] an
57
 
58
  VQA_A and VQA_T are both from EvalCrafter metrics suite.
59
 
 
60
  (2) Temporal Consistency = average(CLIP_Temp, Face_Consistency_Score, Warping_Error) <br>
61
 
62
  CLIP_Temp, Face_Consistency_Score, Warping_Error are all from EvalCrafter metrics suite.
63
 
64
  Warping_Error is "100*(1 - raw_result)" so that larger score indicate better performance.
65
 
 
66
  (3) Dynamic Degree = average(SSIM_dyn, MSE_dyn) <br>
67
 
68
  SSIM_dyn and MSE_dyn are both from VideoScore.
@@ -71,6 +73,7 @@ SSIM_dyn is "100*(1-raw_result)" so that larger score indicate better performanc
71
 
72
  MSE_dyn is "100*(1-raw_results/255^2)" since the value range of pixel is 0-255 and the theoretical maximum of MSE is 255*255.
73
 
 
74
  (4) Text-to-Video Alignment = average(CLIP-Score, BLIP-BLEU) <br>
75
 
76
  CLIP-Scoreand BLIP-BLEU are both from EvalCrafter metrics suite.
 
57
 
58
  VQA_A and VQA_T are both from EvalCrafter metrics suite.
59
 
60
+
61
  (2) Temporal Consistency = average(CLIP_Temp, Face_Consistency_Score, Warping_Error) <br>
62
 
63
  CLIP_Temp, Face_Consistency_Score, Warping_Error are all from EvalCrafter metrics suite.
64
 
65
  Warping_Error is "100*(1 - raw_result)" so that larger score indicate better performance.
66
 
67
+
68
  (3) Dynamic Degree = average(SSIM_dyn, MSE_dyn) <br>
69
 
70
  SSIM_dyn and MSE_dyn are both from VideoScore.
 
73
 
74
  MSE_dyn is "100*(1-raw_results/255^2)" since the value range of pixel is 0-255 and the theoretical maximum of MSE is 255*255.
75
 
76
+
77
  (4) Text-to-Video Alignment = average(CLIP-Score, BLIP-BLEU) <br>
78
 
79
  CLIP-Scoreand BLIP-BLEU are both from EvalCrafter metrics suite.