Anwar Nunez-Elizalde
Anwar Nunez-Elizalde
Sweet! I think we can keep it simple for now. A separate `core_torch` would be fine for the time being. The pyramid class that will end up using this can...
I think this function could be simplified. First, we can restrict it to plot only one temporal frequency. This would make it easier to use in a tutorial. Second, I...
yo', the first image is an artifact. this is where the animation is played. the figure is then captured by sphinx gallery and embedded in the html. in order to...
Hi! It sounds like you need software to detect an object and then track its direction of motion. Unfortunately, pymoten might not be the best library to achieve your goal....
ooof, that is annoying. couple of things: is the "immediate" part relevant? if you store it, exit the session, and then download it in a separate session, does it work?...
just to follow up from our conversation. this can be fixed in this code block: https://github.com/gallantlab/cottoncandy/blob/master/cottoncandy/interfaces.py#L603 A more solid solution is to remove PY2 support. We also need to add...
Yeah, the behavior of `ls()` `lsdir()` and `glob()` are a bit all over the place unfortunately. For what you're trying to do, `lsdir()` works perfectly fine. I agree `ls()` should...
oh that's annoying. we can add a little `isinstance` check to the return object of `lsdir()` as a temporary hack. they bigger issue of the `ls()` behavior remains. i probably...
ok the behavior of `lsdir` is now to convert to list (see f1cacda1). the remaining issue is behavior of `ls()` which is issue #37. gonna leave this open so that...