Nick

Results 19 comments of Nick

Given a fast CPU with all cores used, simple models tend to be faster on the CPU. I suspect the overhead of setting up the GPU becomes significant.

Came across the same issue. It may be tinkering with internals, but following from posts in https://stackoverflow.com/questions/49546922/keras-replacing-input-layer for replacing the input layer it appears to work to do `model._layers.pop(0)` (note...

> Instead of complicating the interface, would it be just as easy to call the task directly the first time (as soon as the processor is initialized enough to handle...

> @nickion, > > Your original suggestion was for an immediate (on first tick) and repeating triggers. What about scheduling `myTask` to be called once on the next tick and...

Good suggestion. Thinking about it more this morning, the more general form would be a fire_and_repeat operation, with both the interval before the first firing specifiable (i.e. a delay), the...

I'd implement every 10 seconds with the first after 1 second as 1,10,20,, as that is the more likely use case, but 1, 11, 21 might be useful too so...

FWIW I am having the same issue in a wxWidgets application. An uninit member var was reported correctly early on and before any Window was displayed but before the DrM...

The faulty code is `switch (res.length % 4) { // To produce valid Base64 ` and the following switch statement. It should be a mod 3 with cases for 0,...

and thanks for the library; spent a while looking and testing libs for compressing local storage, and yours was by far the best overall that I found.

We just came across this after a bower update and a newer angular bootstrap switching being loaded. As version 3.3.2 was allowing installations with jquery 3, it's very likely that...