Martin Andrews
Martin Andrews
(this is a continuation of the discussion started in #11, so it can be 'closed' cleanly) > ... jpcnn, which in turn relies on underscore ... Hmm - that _is_...
When I look at your function at ae.py#L138, and compare it to https://stat.duke.edu/courses/Spring09/sta205/lec/hoef.pdf (in the middle of page 2) it seems like there should be different bracketing : ``` return...
I successfully got the #8 solution going, both with the 'direct' through way, and the 'combining' way. However, there seems to be a problem if the 'main.js' file has an...
Looking at the [accuracy vs size vs FLOPs graph](https://culurciello.github.io/tech/2016/06/04/nets.html) makes it clear why GoogLeNet is commonly sought as a standard model in Keras. This PR includes an implementation in Keras...
I've been using ```geanypy``` as the interface for my https://github.com/mdda/geany-project-tree for some time now : Your plugin has been super-useful. Fedora 27 recently arrived, and geany-plugins-geanypy doesn't appear to have...
... and doesn't work if you're using one kohana/kohanut install for a number of sites. Solution : add the following to the top of the action_index() function in classes/controller/kohanut/install/install.php :...
In application/bootstrap.php, the following : 'profiling' => ! IN_PRODUCTION, should be : 'profile' => ! IN_PRODUCTION, (per the documentation above)... All the Best Martin :-)
I will just freeze the weights in the PipNet model itself, but I'd like to get gradients (to adjust aspects of the input image) from a loss created by the...
A comment appeared in the Python 3.9+ [asyncio documentation](https://docs.python.org/3.9/library/asyncio-task.html#asyncio.create_task) : ``` async def coro(): ... # In Python 3.7+ task = asyncio.create_task(coro()) ``` **"Important : Save a reference to the...
This is a somewhat reorganized plot.py, that works for embedding bokeh plots from blocks (on my machine at least)... An example notebook that shows this is : https://github.com/mdda/pycon.sg-2015_deep-learning/blob/master/ipynb/1-LivePlotting.ipynb (which is...