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