Nick Foti

Results 22 comments of Nick Foti

You're right, stepping into functions in other files does work as long as they're wrapped in `@debug`. With the context printing (using a slightly modified parser) the debugging experience is...

I took a shot at implementing this, but it was a bit more involved than I thought. A lot of the functions use `ContiguousArrays`, which `BitArray`s are not. I did...

I've been thinking about and talking with @dustinvtran about how to handle time series models in edward, including HMMs. Currently, I'm not quite sure how much benefit there is to...

I haven't had a lot of time to work on it lately. However, my view on the forward backward algorithm is to use good implementations in other packages. For instance,...

I've been thinking about this in terms of option 2). I agree distributing the existing code to the GPU could be difficult. On Sat, Apr 8, 2017 at 9:58 AM...

For some reason this is also incorporating a commit from PR #553.

I don't have a problem with having a separate GraphIO package to avoid the dependencies. GML is an entirely different format that is not XML-based. The networkx package uses pyparsing...

Pyparsing does this in python, lex and yacc are the standard tools in C. A wrapper for lex and yacc generated parsers could be possible. Sent from my iPhone On...

I forgot how tedious it is to write parsers with lex/flex and yacc/bison. However, it does seem possible to generate a parser as a shared library with these tools and...

Using pyparsing through PyCall is an option. It just seemed a little unsatisfying to depend on Python for this. If people don't mind though we can also do the same...