From 5d0a227982a140e54bb8b3e6632fe2d02326e13f Mon Sep 17 00:00:00 2001 From: Théo de la Hogue Date: Tue, 20 Jun 2023 18:21:38 +0200 Subject: Removing print. --- src/argaze/GazeAnalysis/ExploitExploreRatio.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/argaze/GazeAnalysis/ExploitExploreRatio.py b/src/argaze/GazeAnalysis/ExploitExploreRatio.py index c5d2392..7b6a2a6 100644 --- a/src/argaze/GazeAnalysis/ExploitExploreRatio.py +++ b/src/argaze/GazeAnalysis/ExploitExploreRatio.py @@ -60,8 +60,6 @@ class ScanPathAnalyzer(GazeFeatures.ScanPathAnalyzer): long_fixations_duration = numpy.array(long_fixations_durations).sum() saccades_duration = numpy.array(saccades_durations).sum() - print(short_fixations_duration, long_fixations_duration, saccades_duration) - assert(saccades_duration + short_fixations_duration > 0) return long_fixations_duration / (saccades_duration + short_fixations_duration) -- cgit v1.1