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
Is your feature request related to a problem? Please describe.
I would like to implement a new model following the diffusers API, namely the conditional UNet1D (mentioned here, but saying that it will not be implemented at the moment).
To do so, I would like to reuse some of the elementary 1D blocks, like DownBlock1D or UpBlock1D.
Unfortunately they are not available for import.
Describe the solution you'd like.
I would like to be able to write the following import statement without a ModuleNotFoundError.
Is your feature request related to a problem? Please describe.
I would like to implement a new model following the
diffusers
API, namely the conditional UNet1D (mentioned here, but saying that it will not be implemented at the moment).To do so, I would like to reuse some of the elementary 1D blocks, like
DownBlock1D
orUpBlock1D
.Unfortunately they are not available for import.
Describe the solution you'd like.
I would like to be able to write the following import statement without a
ModuleNotFoundError
.Describe alternatives you've considered.
My current mitigation is to simply copy-paste the code.
The text was updated successfully, but these errors were encountered: