You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(tabular): avoid NestedTensor CTXSEQ batches when using Opacus DP
Opacus 1.x per-sample gradient hooks hit NotImplementedError on NestedTensorCPU
(aten::new_empty). For DP training, collate CTXSEQ as padded dense tensors with -1
padding; SequentialContextEmbedders already masks -1 and maps to embedding index 0.
Non-DP sequential training keeps nested CTXSEQ collate for unchanged behavior.
Co-authored-by: Michi Platzer <michael.platzer@gmail.com>
0 commit comments