Robert Feldt
Robert Feldt
Hmm, I'm thinking about adding more model selection / IC options to MCMCChains but I'm not fully clear about the current API. Wouldn't it make more sense with an interface...
Ok, I see and it kind of makes sense. So maybe a logpdf function making method makes sense then and this could be added to either Turing.jl, to DynamicPPL, or...
Thanks for all your input. I'll be holding off on PSIS-LOO then, hearing that there is already ongoing work on it. First focus is to explore good/simple ways to add...
Agreed, although my feeling is that the types and methods available in this package (DT) might be needed for a VFDT implementation and, in some sense, it is not as...
Ok, great, when online mode is available I'll try it on some of my research problems and connect it with my BlackBoxOptim.jl package (as a surrogate model in Bayesian Opt).
Any progress or plan for this?
Thanks, this looks great! It looks like a `using KernelFunctions' is missing in the notebook/example? And which package is needed for OIPS?
Thanks, Theo! On a fresh Julia 1.4 with AugmentedGaussianProcesses v0.7.1 I still run into some problems with the online example code. For this line I get an error but it...
Same problem on Julia 1.3.1 and without threads. On your master branch the error message is different: ``` julia> for (X_batch,y_batch) in eachbatch((X_train,y_train), obsdim=1, size=10) train!(model,X_batch,y_batch,iterations=3) end ERROR: MethodError: no...
Ok, just realized the scibert ones are seen as bert models and can thus be loaded with the bert loading_method so this works: ```julia bert_model, wordpiece, tokenizer = pretrain"bert-scibert_scivocab_uncased" ```...