Thomas Wagenaar

Results 19 issues of Thomas Wagenaar

Thank you for this library! It works like a charm for me as opposed to some bigger libraries in other languages. I was wondering if it was possible to retrieve...

Once `URL.searchParams` has [compability with more browsers](https://developer.mozilla.org/en-US/docs/Web/API/URL/searchParams#Browser_compatibility), we can use this to simplify the `_createURL` function. At this moment, the function is supported by: - Chrome ^51.0 - Firefox ^52.0...

enhancement

I notice that Neataptic is getting rather popular the last few months and I have been getting more and more kind e-mails of people who like the project and want...

The code in the documentation should be updated so it can be used with a newer version of Neataptic. E.g. `Architect -> architect`. The JSFiddle's should also be updated accordingly.

enhancement

If a network gets mutated from a `Neat` instance with `mutation.ADD_NODE`, the new node should only get a random activation if `mutation.MOD_ACTIVATION` is present in `Neat.mutation`. ```js // Random squash...

bug

In order to amplify the results of neural networks on larger datasets (i.e. MNIST), we need to implement shared weights. This will also allow the creation of convolutional networks.

enhancement

Currently I'm rewriting all the built-in networks code to construct networks form layers instead of groups and nodes. However, using groups/nodes to construct a LSTM network seems to always outperform...

bug

In the `update()` function of `plot_detected_objects.py`, the following is done: ![afbeelding](https://user-images.githubusercontent.com/10946322/185409836-d6db6dec-24e5-43fb-a261-0f66e85af1de.png) But while the plot limits are approximately +-5 meters, the received datapoints are extremely large. Take for example the...

I have copied the code from [spectral_forced_turbulence.ipynb](https://github.com/google/jax-cfd/blob/main/notebooks/spectral_forced_turbulence.ipynb), but it gives the following error: ``` --------------------------------------------------------------------------- UnfilteredStackTrace Traceback (most recent call last) in [/usr/local/lib/python3.8/dist-packages/jax_cfd/base/initial_conditions.py](https://localhost:8080/#) in filtered_velocity_field(rng_key, grid, maximum_velocity, peak_wavenumber, iterations) 110...

Hi, i'm not sure if this is already possible with the library, but it would be nice to automatically generate a list of "don't cares". For example, if I have...