diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/argaze/GazeAnalysis/ExploitExploreRatio.py | 2 |
1 files changed, 0 insertions, 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) |