David Cottrell
David Cottrell
> I wanted to understand the correctness of the above method. Is there enough clarity on it? @lirus7 It probably needs some testing and cleaning up. A while ago I...
@lirus7 Not sure at all sure. I remember there were some issues with this stuff (see the notes in the README) and what the actual target of the estimation was....
@FlorinAndrei are your variables discrete or continuous? I think I put a few notes in the README of https://github.com/mutualinfo/mutual_info ... that Differential Entropy can be negative and it is not...
I think this was just quote protection right? It seems to be everywhere? @HarisRasul12
I can repro this too but I land on the self.errwrite bit (I suspect it is OS dependent code path variations here). Breaking into the error I see that self.errwrite...
We have also noticed this which might be bad?  That is in proxies.py.
Not sure but posting as we get ideas, this might be relevant: https://stackoverflow.com/questions/9084099/re-opening-stdout-and-stdin-file-descriptors-after-closing-them Calling dup when passing file descriptors around might be a good idea. https://stackoverflow.com/questions/9084099/re-opening-stdout-and-stdin-file-descriptors-after-closing-them
@anki-code @AstraLuma Another finding is that the error goes away with gc disabled. See the test.py below. In xonsh: ./test.py # fails ./test.py true # succeeds ``` $ cat test.py...
> I think we are doing the elision in https://github.com/ipython/ipython/blob/0a3cf8f64f750872b8a6c3161014a404527c6af0/IPython/terminal/ptutils.py currently the elision is done independently on each completion. > > I agree that it would make sens to elide...
I think the pattern you are looking for is some kind of partial update via filters. You can hack things using `object.__setattr__(self, 'nn', ...)` but I suspect that is not...