argosopentech / argos-translate

Open-source offline translation library written in Python
https://www.argosopentech.com
MIT License
3.7k stars 272 forks source link

Bug using FutureWarning: You are using `torch.load` with `weights_only=False` #439

Open VladIPlay opened 3 weeks ago

VladIPlay commented 3 weeks ago

This FutureWarning appears to be new in torch 2.4.0

.venv\Lib\site-packages\stanza\models\tokenize\trainer.py:85: FutureWarning: You are usingtorch.loadwithweights_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 https://github.com/pytorch/pytorch/blob/main/SECURITY.md#untrusted-models for more details). In a future release, the default value forweights_onlywill be flipped toTrue. 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 viatorch.serialization.add_safe_globals. We recommend you start settingweights_only=Truefor 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. checkpoint = torch.load(filename, lambda storage, loc: storage)

solar-sprout commented 1 week ago

This is not ideal, but if you just want to suppress the warning so you can focus on more important messages, this worked for me:

# Suppress stanza/pytorch warnings
import warnings
warnings.filterwarnings("ignore", category=FutureWarning, module="stanza")