We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 65f7a57 commit aef6becCopy full SHA for aef6bec
cmdstanpy/stanfit/gq.py
@@ -2,6 +2,7 @@
2
Container for the result of running the
3
generate quantities (GQ) method
4
"""
5
+from __future__ import annotations
6
7
from collections import Counter
8
from typing import (
@@ -399,7 +400,7 @@ def draws_pd(
399
400
401
@overload
402
def draws_xr(
- self: "CmdStanGQ[CmdStanMLE]" | "CmdStanGQ[CmdStanVB]",
403
+ self: CmdStanGQ[CmdStanMLE] | CmdStanGQ[CmdStanVB],
404
vars: str | list[str] | None = None,
405
inc_warmup: bool = False,
406
inc_sample: bool = False,
0 commit comments