We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Parent issue #2550
This issue is a running list of new mypy warnings when using Pyro>=1.9 which has a py.typed.
poutine.trace(...).get_trace()
dist.Categorical
PyroParam
self.W_kg.T
% python --version Python 3.11.5 % pip freeze | grep mypy mypy==1.8.0 mypy-extensions==1.0.0 % pip freeze | grep pyro pyro-api==0.1.2 pyro-ppl==1.9.0
The text was updated successfully, but these errors were encountered:
I get a lot of errors related to PyroParam.
Sorry, something went wrong.
No branches or pull requests
Parent issue #2550
This issue is a running list of new mypy warnings when using Pyro>=1.9 which has a py.typed.
poutine.trace(...).get_trace()
has no attribute "get_trace" Fix typing of poutine.trace(model).get_trace() #3334dist.Categorical
: Module has no attribute "Categorical" Explicitly import distributions from torch #3333PyroParam
Missing positional arguments "constraint", "event_dim" in call to "PyroParam" [call-arg]self.W_kg.T
"PyroParam" has no attribute "T" [attr-defined]Environment
The text was updated successfully, but these errors were encountered: