diff options
author | Laurent Mazare <laurent.mazare@gmail.com> | 2024-02-08 13:09:49 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-08 13:09:49 +0100 |
commit | cdc3823d8fd71c5cc8aed3bef1f70291b81d6e8a (patch) | |
tree | 3a08798f248af380454377c49442fdb012851b1c /candle-core | |
parent | e5eb9602d0eb385c53e7c1dd92687d732bb038e9 (diff) | |
download | candle-cdc3823d8fd71c5cc8aed3bef1f70291b81d6e8a.tar.gz candle-cdc3823d8fd71c5cc8aed3bef1f70291b81d6e8a.tar.bz2 candle-cdc3823d8fd71c5cc8aed3bef1f70291b81d6e8a.zip |
Pickle support: dig within the _rebuild_parameter calls. (#1681)
Diffstat (limited to 'candle-core')
-rw-r--r-- | candle-core/src/pickle.rs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/candle-core/src/pickle.rs b/candle-core/src/pickle.rs index c7b9e434..f6d80830 100644 --- a/candle-core/src/pickle.rs +++ b/candle-core/src/pickle.rs @@ -217,6 +217,13 @@ impl Object { let args = args.remove(1); (callable, args) } + Object::Class { + module_name, + class_name, + } if module_name == "torch._utils" && class_name == "_rebuild_parameter" => { + let mut args = args.tuple()?; + args.remove(0).reduce()? + } _ => (callable, args), }; match callable { |