Skip to content

Commit

Permalink
fea(): Added G1 ci test. updated readme
Browse files Browse the repository at this point in the history
  • Loading branch information
imangohari1 authored and pi314ever committed Jun 20, 2024
1 parent 9d87649 commit 541455c
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion tests/test_video_mae.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
# limitations under the License.


import os
import time
from unittest import TestCase

Expand All @@ -24,7 +25,12 @@
from transformers import VideoMAEForVideoClassification, VideoMAEImageProcessor


LATENCY_VIDEOMAE_BF16_GRAPH_BASELINE = 17.544198036193848
if os.environ.get("GAUDI2_CI", "0") == "1":
# Gaudi2 CI baselines
LATENCY_VIDEOMAE_BF16_GRAPH_BASELINE = 17.544198036193848
else:
# Gaudi2 CI baselines
LATENCY_VIDEOMAE_BF16_GRAPH_BASELINE = 61.953186988830566
MODEL_NAME = "MCG-NJU/videomae-base-finetuned-kinetics"


Expand Down

0 comments on commit 541455c

Please sign in to comment.