Spaces:
Paused
Paused
MacBook pro
commited on
Commit
·
69bb7ad
1
Parent(s):
301d020
fix(metrics): correct indentation in Metrics.__init__ causing IndentationError
Browse files- metrics.py +2 -2
metrics.py
CHANGED
|
@@ -28,8 +28,8 @@ class Metrics:
|
|
| 28 |
self.video_avg_frame_size = 0.0
|
| 29 |
self._fps_window = fps_window
|
| 30 |
self._frame_times: Deque[float] = deque(maxlen=fps_window)
|
| 31 |
-
|
| 32 |
-
|
| 33 |
|
| 34 |
self.ema_alpha = ema_alpha
|
| 35 |
|
|
|
|
| 28 |
self.video_avg_frame_size = 0.0
|
| 29 |
self._fps_window = fps_window
|
| 30 |
self._frame_times: Deque[float] = deque(maxlen=fps_window)
|
| 31 |
+
self.video_frame_interval_ema = 0.0
|
| 32 |
+
self._last_video_ts = None # type: ignore
|
| 33 |
|
| 34 |
self.ema_alpha = ema_alpha
|
| 35 |
|