sme
sme
Fixed two non-deterministic sources of hard-to-catch issues in RNN example.
## Summary See [bookmarks#115](https://github.com/atom/bookmarks/issues/115). "bookmarks" has not seen a release and therefore **an update within Atom** in over 3 years. All PRs and improvements in `bookmarks` since then have not...
I just tried to use `diff-so-fancy` for comparing large markdown files. Great tool, thanks! I am dealing with multiple sentences per line, so a line can easily have a few...
## Feature request The following works just fine for targets `cpu` and `parallel` ... ```python from numba import guvectorize import numpy as np @guvectorize( 'void(f8[:],f8[:],f8[:],f8[:],f8[:],f8[:])', '(n),(n),(n)->(n),(n),(n)', target = 'cpu', nopython...
Erratic warnings (NumbaPerformanceWarning: Grid size) when using `@numba.vectorize(target = 'cuda')`
# Issue The following minimal example illustrates the issue (on my system at least): ```python from math import sin, cos import numpy as np import numba as nb from numba...
I just came across an inconsistency. Datasets, once opened, can not be directly closed via [the Python bindings](https://gdal.org/python/osgeo.gdal.Dataset-class.html). There is no `close` or any similar method in this class. In...
Potentially dump question - the documentation of this project is generated with Sphinx. Is there any specific reason why PDF is not explicitly supported as an output format in this...
This is a fun one. As discussed, I wanted the states to use `numpy.ndarray` objects instead of tuples for holding their data. Preparation for arrays. Turns out this is a...
The [following two lines](https://github.com/poliastro/poliastro/blob/c7d12e9b715d3fd60f2be233af707d5b97617d39/src/poliastro/core/elements.py#L530) ... ```python rx = (r / s2)(cos(L) + alpha2**2 * cos(L) + 2 * h * k * sin(L)) ry = (r / s2)(sin(L) - alpha2**2...
I now fear running `pylint` against all of `poliastro` ;) Yet another linter find. The class `poliastro.earth.atmosphere.Jacchia77` calls `_H_correction` and `_O_and_O2_correction` from `poliastro.core.earth_atmosphere.jacchia`. In both cases, only two arguments are...