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
Modifying the parameter delta in PATEGan is not possible by passing kwargs to generators.get. The only way I can reach and modify this parameter is via the model attribute but I guess this means breaking the encapsulation.
How to Reproduce
generators = Plugins()
pategan = generators.get("pategan")
pategan.delta # ERROR: 'PATEGANPlugin' object has no attribute 'delta
Description
Modifying the parameter
delta
inPATEGan
is not possible by passing kwargs togenerators.get
. The only way I can reach and modify this parameter is via themodel
attribute but I guess this means breaking the encapsulation.How to Reproduce
Expected Behavior
System Information
Additional Context
As a side note, it appears that this parameter is named
dp_delta
in the documentation while the actual attribute isdelta
.The text was updated successfully, but these errors were encountered: