Online Learning 1: Introduction

1 Assumption

在这里插入图片描述

2 Probability

Probability triplet

在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

Expectation and variance

在这里插入图片描述

Independence

在这里插入图片描述

Conditioning, conditional expectation

在这里插入图片描述
在这里插入图片描述

3 Concentration

Review

在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

Markov’s inequality (non-negative random variable)

在这里插入图片描述

Chebyshev’s inequality (arbitrary random variable)

在这里插入图片描述

Chernoff bound

在这里插入图片描述

Gaussian and sub-gaussian

在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

4 Bandit Framework and Regret

在这里插入图片描述

Notation

在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

Stochastic bandit

在这里插入图片描述
在这里插入图片描述

Unstructured, structured environment

在这里插入图片描述
在这里插入图片描述

  • Unstructured environment: Play each arm a reasonable number of times to estimate the goodness of that arm.
  • Structured environment: Infinite actions. Different actions or different arms leak information about each other, need to only play about order d amount of times and basically get samples to figure out what the theta is. In some sense easier in terms of the number of samples needed.

Regret

在这里插入图片描述

Suboptimality

在这里插入图片描述
Suboptimality quantifies how much was any particular arm is in an expected sense from the best arm.
在这里插入图片描述

Regret decomposition

在这里插入图片描述

Bayesian regret

在这里插入图片描述
在这里插入图片描述

  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
你可以用以下代码作为在线教育平台的首页Vue模板: ```html <template> <div> <h1>Welcome to our Online Education Platform!</h1> <p>Explore our wide range of courses and start learning today.</p> <div class="course-list"> <div v-for="course in courses" :key="course.id" class="course-card"> <img :src="course.image" alt="Course Image"> <h2>{{ course.title }}</h2> <p>{{ course.description }}</p> <button @click="enroll(course.id)">Enroll Now</button> </div> </div> </div> </template> <script> export default { data() { return { courses: [ { id: 1, title: 'Introduction to Programming', description: 'Learn the basics of programming with this introductory course.', image: 'path/to/image1.jpg' }, { id: 2, title: 'Web Development Fundamentals', description: 'Master the essentials of web development with this comprehensive course.', image: 'path/to/image2.jpg' }, // Add more courses as needed ] }; }, methods: { enroll(courseId) { // Handle enrollment logic here console.log(`Enrolling in course ${courseId}`); } } }; </script> <style scoped> /* Add your custom styles here */ .course-list { display: flex; flex-wrap: wrap; } .course-card { width: 300px; margin: 10px; padding: 10px; border: 1px solid #ccc; } .course-card img { width: 100%; height: auto; } .course-card h2 { margin-top: 10px; } .course-card p { margin-top: 5px; } .course-card button { margin-top: 10px; } </style> ``` 这个代码片段创建了一个包含课程列表的在线教育平台首页。每个课程都有一个标题、描述和图片,用户可以点击 "Enroll Now" 按钮来报名参加课程。你可以根据实际需要添加更多的课程和自定义样式。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值