James McDermott

Results 14 issues of James McDermott

I was thinking of using `asciitree` to represent arithmetic expressions as trees, eg `(2 * 2)`: ``` * +-- 2 +-- 2 ``` But this seems not to work, because...

In `nolearn.dbn`, is it possible to run the trained network backwards, ie generatively? I'm thinking of eg [Hinton's lecture](https://www.youtube.com/watch?feature=player_detailpage&v=AyzOUbkUf3M#t=1398s) where he presents the output layer of his trained network with...

Since this repo seems unmaintained at the moment, with quite a few pending PRs and open issues relating to bugs in the tasks -- is anyone aware of another repo...

Thanks to Joshua O'Curry who pointed this out to me (I don't know his Github username).

*gplearn* already has a protected division: `np.where(np.abs(x2) > 0.001, np.divide(x1, x2), 1.)` and protected log: `np.where(np.abs(x1) > 0.001, np.log(np.abs(x1)), 0.)`. Both of these are common but both introduce discontinuities which...

enhancement

The Glumpy section is missing some text: **Glumpy** Glumpy is an OpenGL-based interactive visualization library in Python. Its goal is to make it easy to create fast, scalable, beautiful, interactive...

When I click `save`, nothing happens. If I right-click, I can copy link but it's just `https://experiments.withgoogle.com/ai/beat-blender/view/share#`. (I made sure to edit the corners first, so there was something to...

Genetic Folding: A New Class of Evolutionary Algorithms M.A. Mezher and M.F. Abbod In M. Bramer et al. (eds.), Research and Development in Intelligent Systems XXVII, DOI 10.1007/978-0-85729-130-1_21, © Springer-Verlag...