-
-
Notifications
You must be signed in to change notification settings - Fork 2k
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
Indexing problem when using SQLite backend #790
Comments
Thanks for reporting. @kyleam any ideas? |
kyleam
added a commit
that referenced
this issue
Jul 23, 2015
Return a NDArray slice instead of warning when an out-of-memory backend is sliced. Fixes #790
kyleam
added a commit
that referenced
this issue
Jul 23, 2015
Out-of-memory backends give a warning when the user tries to slice them, so the result may be a list of Nones. re: #790
Thanks. The SQLite backend doesn't support slicing (there should be a
warning before the error you reported), so the output should have been
checked for Nones. I've pushed a commit that does this, but that
doesn't make your snippet work (instead you are now going to be passing
a None to traceplot). For that, I've opened a PR that allows SQLite and
Text to be sliced.
|
Thanks @kyleam, that makes perfect sense! Digging through |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hello!
Not quite sure how to describe this, so I'll just go with an example to demonstrate, specifically the intro model from the tutorial page.
This works fine. The problem arises when I try to use the
traceplot
method with some indexing:Clearly, there is something wrong with how the traces are being read --
traces
not being passed toMultiTraces
or something perhaps? But I cannot seem to figure this out as calling like this when using the default RAM backend works fine. Any ideas where I might want to look?The text was updated successfully, but these errors were encountered: