With the 3.3.1 update, the previously known modification to content_analyser.py is no longer sufficient.
A modification has been added to core.py to detect file tampering and stop execution.
You can use AI to compare core.py with previous versions, find the modified parts, and take appropriate action.
There are also ways to respond without coding. Please check them out. aiprovideos.com/facefusion-3-3-2-h...
is_valid = hash_helper.check_module_hash(content_analyser, 'content_analyser')
return all(module.pre_check() for module in common_modules) and is_valid
With
is_valid = True
return all(module.pre_check() for module in common_modules) and is_valid
How can I disable the NSFW filter in FaceFusion 3.3.2 - Pinokio? Can you give me specific instructions? Thank you!
Reply luchinco@hotmail.com
With the 3.3.1 update, the previously known modification to content_analyser.py is no longer sufficient.
A modification has been added to core.py to detect file tampering and stop execution.
You can use AI to compare core.py with previous versions, find the modified parts, and take appropriate action.
There are also ways to respond without coding. Please check them out.
aiprovideos.com/facefusion-3-3-2-h...
In your content_analyser.py replace the following:
Replace
With
Replace
With
Next, in core.py, replace
With
Can you please help with 3.4.1
everything is the same except replace the lines below:
return all(module.pre_check() for module in common_modules) and content_analyser_hash == '803b5ec7'
with:
is_valid = True
return all(module.pre_check() for module in common_modules) and is_valid