-
When rendering images in a jupyter notebook (from matplotlib for example), these images look much bigger in vscode than in nbviewer or github’s jupyter viewer.
Example (see the image at the end):
…
-
This notebook here renders incorrectly in vscode:
https://github.com/david-cortes/contextualbandits/blob/master/example/online_contextual_bandits.ipynb
https://nbviewer.jupyter.org/github/david-cort…
-
I was trying to use the `fit()` function to update a model with the rewards I got after issuing a batch of 100 actions. This was the first batch of actions that the model had issued and it was all the…
-
estimator = VowpalWabbitContextualBandit() \
.setArgs("--cb_explore_adf --epsilon 0.2 --quiet") \
.setParallelism(6) \
.setSharedCol('hour_feature') \
.setAdditionalSharedFeatures(…
-
### Description
> A brief description of the error, missing documentation or what you would like added
We can't host a contextual bandit model in our serving module as our serving module requires …
-
### Description
> I need to make a recommender based on implicit feedback, like views, page visits. Another package with ALS supports this, but that package doesn't have online (streaming) learning…
-
Hi,
A group I was in tried to reproduce some of the results from the paper associated with this repo.
To be honest, it was a bit more rushed than I'd like, there is probably a fair amount we co…
sroy2 updated
3 years ago
-
Hi,
I am looking for a way to output the probabilities for all the actions for a given context, but cant find a way to do so. The 'emit_log_prob' always gives the value 0 for the action chosen. i …
-
add an example script that that uses thompson sampling, either in the context of gaussian process based bayesian optimization (see e.g. [here](http://gpss.cc/gpss15/talks/Nado.pdf)) or gaussian proces…
-
Hi,
I couldn’t find any example on how to pass context to the MAB experiment trial. Does it support context?
Thank you