nsfw_detect: Tolerate score computation failure
This commit is contained in:
parent
af4b3b06c0
commit
f25619b7e3
|
@ -77,10 +77,10 @@ class NSFWDetector:
|
|||
"-cpng", "-i", fpath
|
||||
], stdout=PIPE, stderr=DEVNULL, check=True)
|
||||
image_data = ff.stdout
|
||||
except:
|
||||
return -1.0
|
||||
|
||||
scores = self._compute(image_data)
|
||||
except:
|
||||
return -1.0
|
||||
|
||||
return scores[1]
|
||||
|
||||
|
|
Loading…
Reference in New Issue