astro-kevin

Results 9 issues of astro-kevin

Copied from [https://discourse.julialang.org/t/turing-sampling-specified-parameters/90360](https://discourse.julialang.org/t/turing-sampling-specified-parameters/90360) In my model, I have ``` @model function runmodel(stuff, parameters) parameters ~ Product([Uniform(0,5), Uniform(0, 1), ...]) predictions, otherstuff = model(stuff, parameters) obs, var = findobsvar(stuff, otherstuff) obs...

bug
dynamicppl

Is there a way to customize the corner plot generated from MCMCChains? Specifically I'd like to be able to manually define the axes for each individual plot, and plot the...

Is there any documentation for an up-to-date example for multiple-GPU use? The last issue #54 seems to point to a broken link.

I see that the documentation state that `tf.distribute.MirroredStrategy` and `tf.distribute.TPUStrategy` are supported, while `tf.distribute.MultiWorkerMirroredStrategy` is not yet. Are any of the other strategies supported? Such as `tf.distribute.CentralStorageStrategy` or `tf.distribute.ParameterServerStrategy`?

TuringLang/Turing.jl#1982

I'm not sure what's the correct syntax for the functions `chainscat` and `chainsstack`. I tried calling `chainscat(a,b)` and `chainsstack([a,b])` and both return an error. (As an aside, is the only...

I'm trying to use Ray to do a Hyperparameter search via the sklearn API. In there, one of the callback function `RayTrainReportCallback` requires the key of the XGBoost metric. Since...

status: need update

When fitting a model with RayXGBRregressor, `.fit` appears to pass the wrong number of arguments `_configure.fit` When running ``` reg = RayXGBRegressor(n_jobs=1) reg.fit(X_train, y_train) ``` throws this error ``` ---------------------------------------------------------------------------...