-
Notifications
You must be signed in to change notification settings - Fork 17
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
TypeError: __init__() missing 1 required positional argument: 'in_channels' #12
Comments
have you slove this question? ,I also faced with this problem |
I was experiencing the same problem and this solution worked for me: from iunets import iUNet
model = iUNet(
in_channels=64,
architecture=[2,2,2,2],
dim=2
)
model.print_layout() This example is in the branch called new_channel_interface, which is different from the one in the main branch. Should the readme of the main branch be updated? or are you working on features that may conflict with the above example @cetmann ? |
这是来自QQ邮箱的假期自动回复邮件。你好,我最近正在休假中,无法亲自回复你的邮件。我将在假期结束后,尽快给你回复。
|
I haven’t. Do you?
On Mon, 2 May 2022 at 2:40 PM tianwen220 ***@***.***> wrote:
have you slove this question? ,I also faced with this problem
—
Reply to this email directly, view it on GitHub
<https://urldefense.com/v3/__https://github.com/cetmann/iunets/issues/12*issuecomment-1114753942__;Iw!!Nmw4Hv0!3uLcXY4M9lhvQKe6NhLAXN3qpSTb1LEaCCUx-EXj1vZlOtu0GjdanI9qtlDLPyyXA8jzBIQuneTFz4JigXpHdUQ_3pALu0HuT-3kyg$>,
or unsubscribe
<https://urldefense.com/v3/__https://github.com/notifications/unsubscribe-auth/ALH7GBBI3XHO4ICUALT67V3VH65J5ANCNFSM5G27NNPA__;!!Nmw4Hv0!3uLcXY4M9lhvQKe6NhLAXN3qpSTb1LEaCCUx-EXj1vZlOtu0GjdanI9qtlDLPyyXA8jzBIQuneTFz4JigXpHdUQ_3pALu0Gll1np-g$>
.
You are receiving this because you authored the thread.Message ID:
***@***.***>
--
*Muhammad Izzatullah*
King Abdullah University of Science and Technology (KAUST)
Division of Physical Sciences and Engineering
Bldg. 1, #0202-WS023
Thuwal 23955-6900, Kingdom of Saudi Arabia
*Tel*.: +966 (56) 569 7388
*Email*: ***@***.***
…--
This message and its contents, including attachments are intended solely
for the original recipient. If you are not the intended recipient or have
received this message in error, please notify me immediately and delete
this message from your computer system. Any unauthorized use or
distribution is prohibited. Please consider the environment before printing
this email.
|
这是来自QQ邮箱的假期自动回复邮件。你好,我最近正在休假中,无法亲自回复你的邮件。我将在假期结束后,尽快给你回复。
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi! I tried to run iUNet tutorial on my machine. However, it failed and return a TypeError.
TypeError: __init__() missing 1 required positional argument: 'in_channels'
. Could you assist me with this?Thanks!
The text was updated successfully, but these errors were encountered: