OOD
2016-05-29 20:06:24 0 举报
OOD,全称为Out of Distribution,指的是在机器学习和深度学习领域中,模型在处理训练集之外的、未见过的数据时的表现。当模型遇到OOD数据时,其预测结果的准确性通常会显著下降,这是因为模型在训练过程中主要学习了训练集中的数据分布,而对其他分布的数据理解不足。因此,OOD检测是一个重要的研究领域,其目标是识别并处理模型的OOD输入,以提高模型的鲁棒性和安全性。同时,OOD也被视为衡量模型泛化能力的重要指标之一。
作者其他创作
大纲/内容
TeacherController
StudentController
+ register()+ select_course(course)+ drop_course(course)+ evaluation(course)+ get_score(course)
CourseModel
+ name: string+ state: int+ type: int+ grade: int+ teacher: Teacher+ student: List+ time: datetime+ place: string+ scorebook: List
Button
Model
+ add()+ delete()+ query()+ update()+ serialize()
UserModel
+ userid: string+ name: string+ password: string+ department: string+ tel: string+ email: string+ address: string
Form
View
+ render()
UserController
ScoreModel
+ course: Course+ student: Student+ score: int+ analysis: string
LoginView
Tab
CourseController
CourseView
TeacherModel
+ title: string+ seniority: int+ major: string+ office: string+ courselist: List
StudentModel
+ type: int+ grade: int+ major: string+ course_list: List
UserView
App
+ init_app()
AdministratorController
+ audit_course(course)+ open_course(course)+ close_course(course)+ confirm_grade(course)+ update_profile(profile)
Config
+ DB_URI: URI+ SECRET_KEY: string
+ init()
Controller
+ request: Request+ session: HashMap
+ make_response()
AdministratorModel
+ authority: int
0 条评论
下一页