CBCTToothSegmentation: How to fix "torch.load with weights_only=False"

When I work with the extension extensions-manager CBCTToothSegmentation, the below error occur. Which file do I need to fix and how to do with it. It seems to be a python problem and I searched some solution but it did not work.

Slicer version:Slicer 5.7.0-2024-09-05

You are using torch.load with weights_only=False (the current default value), which uses the default pickle module implicitly. It is possible to construct malicious pickle data which will execute arbitrary code during unpickling (See pytorch/SECURITY.md at main · pytorch/pytorch · GitHub for more details). In a future release, the default value for weights_only will be flipped to True. This limits the functions that could be executed during unpickling. Arbitrary objects will no longer be allowed to be loaded via this mode unless they are explicitly allowlisted by the user via torch.serialization.add_safe_globals. We recommend you start setting weights_only=True for any use case where you don’t have full control of the loaded file. Please open an issue on GitHub for any issues related to this experimental feature.

This does not sound like an error (just a warning that some unsecure feature will be disabled in the future).

You can reach developers in the repository’s issue tracker. You will need to provide information about what did you do exactly, on what operating system, using what hardware (CPU, GPU, RAM, …), on what data, how did you get this error message, and post not just a selected message but the full log.