mirror of
https://github.com/NicolasBohn/NexQuant.git
synced 2026-07-28 07:57:44 +00:00
fix(security): add nosec for torch.load (B614 #735)
This commit is contained in:
@@ -102,7 +102,7 @@ class PMLP(torch.nn.Module):
|
||||
model_cls = PMLP
|
||||
|
||||
if __name__ == "__main__":
|
||||
node_features = torch.load("node_features.pt", weights_only=True)
|
||||
node_features = torch.load("node_features.pt", weights_only=True) # nosec B614
|
||||
edge_index = torch.load("edge_index.pt", weights_only=True) # nosec B614
|
||||
|
||||
# Model instantiation and forward pass
|
||||
|
||||
Reference in New Issue
Block a user