When i execute the code to scan images, it gives the error
ModuleNotFoundError Traceback (most recent call last)
in ()
----> 1 from nsfw_model import NSFWDetector
2 detector = NSFWDetector('./nsfw.299x299.h5')
3 detector_mobilenet = NSFWDetector('./nsfw_mobilenet2.224x224.h5')
4
5 # Predict single image
ModuleNotFoundError: No module named 'nsfw_model'
How can i solve this issue
When i execute the code to scan images, it gives the error ModuleNotFoundError Traceback (most recent call last)