config parsing error? #13044
Unanswered
KyonP
asked this question in
code help: CV
Replies: 1 comment
-
@KyonP As the error says, you're giving 6 positional arguments ( super().__init__(
feature,
compute_on_step,
dist_sync_on_step,
process_group,
dist_sync_fn,
) |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hello, I am a newbie who recently started working on a project based on GAN with Pytorch-lightning.
I managed to build a primitively long code that worked fine; however, I have faced error messages that cannot be resolved since the start of this month.
I spent almost a week figuring out where to look; I hope to get some advice.
here is my error message:
I am familiar with the error message itself. However, it is hard to distinguish the problem source.
The last reached point
self.fid = EfficientFrechetInceptionDistance()
is a code that inherited fromtorchmetrics.image.fid
:Since the code worked fine during April, I presumed this occurred by automated or mistakenly conducted Ubuntu updates or Python dependency updates. However, I checked my history, and nothing looks suspicious. FYI, here is my PIP package list:
I updated and downgraded packages, but nothing changed.
The entry code is
main.py.
And followed by
learner.py
since it is a very long code; however, it stops very early, and only partial code is followed.Since it is an error with positional arguments, I am conjecturing this is caused by:
jsonargparse
)main.py
or config file)I have been stuck in this issue for almost a week and still don't have a clue. Is there any suggestion for a hint? any small advice would be grateful.
p.s. My Development Environment is Pycharm 2021.3.3, remotely connected to a GPU machine, and controlled as a remote interpreter.
Beta Was this translation helpful? Give feedback.
All reactions