Earlier quoted context omitted.
Could you expand on control theory? Is it PID?
I was just mentioning that any feedback loops have the potential downside of coupling things together in ways that make experiments (and analysis, improvements, etc.) difficult. I used control theory as an example of another type of feedback loop because we were using controllers in other parts of the system. One was roughly the proportional term of a PID controller. Another was both the proportional and integral ter…
Introduction to Multi-Armed Bandits (2019)
31–34 of 34 posts
Re: Introduction to Multi-Armed Bandits (2019)
#32Hey, an area I actually work on and use in production! MAB in our case has shown improvements in our A/B metrics. My general takeaways for my experience with MAB: * we have a single optimization goal (e.g the metric to minimize or maximize). The hard part isnt defining a optimization goal. The hard part is identifying what stakeholders actually want the tradeoff between different metrics. If you have goal A and goal…
Re: Introduction to Multi-Armed Bandits (2019)
#33Its very easy to implement toy multi-armed bandits, and even getting them into production code isn't so bad. Its the reporting, education, and adding features without breaking everything that gets very hard very quick.
> Its the reporting, education, and adding features without breaking everything that gets very hard very quick. What's challenging about that though?
Re: Introduction to Multi-Armed Bandits (2019)
#34Hey, an area I actually work on and use in production! MAB in our case has shown improvements in our A/B metrics. My general takeaways for my experience with MAB: * we have a single optimization goal (e.g the metric to minimize or maximize). The hard part isnt defining a optimization goal. The hard part is identifying what stakeholders actually want the tradeoff between different metrics. If you have goal A and goal…
Do you have write ups how to use it in production?