Danny Goldstein
Danny Goldstein
Description ----------- Prerequisites: read #2521 This PR implements the high-level spec of `resume_from_checkpoint` from #2521. It also provides a refactored implementation of `log_checkpoint()` from that PR. Key differences between this...
A user ran into the issue that ```python # All these work fine wandb.config.embed_dims wandb.config['embed_dims'] getattr(wandb.config, 'embed_dims') wandb.config.__getattr__('embed_dims') # But this throws an AttributeError wandb.config.__getattribute__('embed_dims') ``` This PR adds `__getattribute__`...
https://wandb.atlassian.net/browse/WB-5841 https://wandb.atlassian.net/browse/CLI-765 Fixes #1982 Description ----------- When you interrupt a running cell in colab, then try to restart it, sometimes it can raise an error that the "wandb backend has...
https://github.com/skyportal/skyportal/issues/1072 From @shreyasahasram08: > Not absolutely necessary, but useful: it would be great to have absolute magnitude of the transient on the opposite y-axis to apparent magnitude added once a...
@kbarbary I propose that we make all filters from http://svo2.cab.inta-csic.es/svo/theory/fps/index.php?mode=browse available through sncosmo. This would result in about 6000 total filters exposed by the program, so wanted to discuss it...
Here is a very sinister bug that took me a *long* time to track down. It affects the core functionality of the library. When a pickled `Model` is unpickled, updates...
The JWST nircam throughputs are very messed up and do not agree with the exposure time calculator. For example the F200w throughput is about 2x higher on sncosmo than it...
When I call `normalize_data` I get: ``` /Users/dgold/sncosmo/sncosmo/utils.py:413: UserWarning: standardize_data is deprecated in sncosmo 1.5 and will be removed in sncosmo 2.0 This function not intended for public use; open...
This PR alters the interface of the `mcmc_lc` method, making its `priors` argument take a dictionary of functions that return the log prior, rather than the prior pdf. Reasons for...
Hi, When I run `example.py`, I get: ``` python In [1]: %run example.py /o/dgold/miniconda/lib/python2.7/site-packages/IPython/parallel.py:13: ShimWarning: The `IPython.parallel` package has been deprecated. You should import from ipyparallel instead. "You should import...