runtime error
Exit code: 1. Reason: s_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 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. state_dict_raw = torch.load(model_path, map_location="cpu")['state_dict'] Error initializing models: invalid load key, 'E'. Traceback (most recent call last): File "/home/user/app/app.py", line 34, in <module> TTS_INTERFACE, ASR_MODEL = initialize_models() File "/home/user/app/app.py", line 22, in initialize_models tts_interface = InterfaceGGUF(model_path) File "/usr/local/lib/python3.10/site-packages/outetts/v0_1/interface.py", line 118, in __init__ self.audio_codec = AudioCodec(self.device) File "/usr/local/lib/python3.10/site-packages/outetts/v0_1/audio_codec.py", line 21, in __init__ self.wavtokenizer = WavTokenizer.from_pretrained0802(self.config_path, self.model_path) File "/usr/local/lib/python3.10/site-packages/outetts/v0_1/decoder/pretrained.py", line 101, in from_pretrained0802 state_dict_raw = torch.load(model_path, map_location="cpu")['state_dict'] File "/usr/local/lib/python3.10/site-packages/torch/serialization.py", line 1384, in load return _legacy_load( File "/usr/local/lib/python3.10/site-packages/torch/serialization.py", line 1628, in _legacy_load magic_number = pickle_module.load(f, **pickle_load_args) _pickle.UnpicklingError: invalid load key, 'E'.
Container logs:
Fetching error logs...