David Kirkby

Results 16 issues of David Kirkby

I am testing the following eck4 meridian labeling example: ``` def label_bug(celestial=True, lon_0=65): m = Basemap(projection='eck4', lon_0=lon_0, resolution=None, celestial=celestial) m.drawmeridians([lon_0, lon_0 + 60], labels=[0,0,1,0], labelstyle='+/-') m.drawmapboundary() ``` With normal coordinates,...

I am rendering images from C++ code that calls the GalSim library (without using python) as part of a shear estimator pipeline. The GalSim rendering step is currently the bottleneck...

numerics
feature request
optimization/performance

Add useful links here that should be included in the notebooks...

I am having trouble understanding your loss function defined [here]() as: ``` pre_output = self.layers[-1].lin_output log_prob = -T.sum(T.nnet.softplus(-target * pre_output + (1 - target) * pre_output), axis=1) loss = (-log_prob).mean()...

**Is your feature request related to a problem? Please describe.** I am finding snippets to be a useful tool that often saves me from having to dig through other notebooks...

Feature Request
Notebook

Some functions already work with numpy args (e.g., `xyz_from_rgb`) but others use functions or constructs that are not numpy aware (e.g., `rgb_from_irgb` uses `float()` and `lab_from_xyz` uses scalar '>'). This...

It would be useful to be able to convert between two different RGB color spaces, but it looks like this isn't currently possible since the `colormodels.init()` function uses globals so...

This could either be triggered by an option to `ccl_cosmology_compute_power_class()` or we could always calculate and save the transfer functions (since they are presumably always being calculated anyway) to simplify...

Enhancement
C/C++
CLASS
!!SCIENCE!!

The AI is getting a bit slow, especially with the larger corpus. This issue is to run a profile and see if there are any obvious bottlenecks that would be...

The current implementation of `model.get_clue(...)` is too simple and ad-hoc. Visible words are now divided into four groups: - words associated with the clue - all words for our team...