summaryrefslogtreecommitdiff
path: root/candle-core
diff options
context:
space:
mode:
authorLaurent Mazare <laurent.mazare@gmail.com>2024-02-08 13:09:49 +0100
committerGitHub <noreply@github.com>2024-02-08 13:09:49 +0100
commitcdc3823d8fd71c5cc8aed3bef1f70291b81d6e8a (patch)
tree3a08798f248af380454377c49442fdb012851b1c /candle-core
parente5eb9602d0eb385c53e7c1dd92687d732bb038e9 (diff)
downloadcandle-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.rs7
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 {