Eval ci slides (09) (Đánh giá mô hình, tập trung vào khoảng tin cậy) - Sebastian Raschka
- 페이지 수
- 51
- 형식
- 크기
- 1.5 MB
- 연도
- 2018
- Trường
- University Wisconsin-Madison
- 조회수
- 0
- 댓글
- 0
- Lượt tải
- 0
미리보기 생성 중...
Slide bài giảng về đánh giá mô hình, tập trung vào khoảng tin cậy, thuộc khóa học STAT 479: Machine Learning.
- 문서명
- Eval ci slides (09) (Đánh giá mô hình, tập trung vào khoảng tin cậy) - Sebastian Raschka
- 학교 / 강의
- University Wisconsin-Madison · Machine learning
- 작성자 (문서 내)
- Sebastian Raschka
- 내용
- Bài giảng này giới thiệu về đánh giá mô hình học máy, tập trung vào khoảng tin cậy và các phương pháp như Holdout. Nó chỉ ra những hạn chế của phương pháp Holdout, đặc biệt là ảnh hưởng của việc lấy mẫu con lên tính đại diện của dữ liệu.
- 목차
- Lecture 09
- Model Evaluation 2: Confidence Intervals
- STAT 479: Machine Learning, Fall 2018
- Sebastian Raschka
- Overview
- Bias and Variance
- Basics
- Overfitting and Underfitting
- This Lecture
- Holdout method
- Confidence Intervals
- Model Eval Lectures
- Repeated holdout
- Resampling methods
- Empirical confidence intervals
- Hyperparameter tuning
- Cross-Validation
- Model selection
- Algorithm Selection
- Statistical Tests
- Evaluation Metrics
- Main points why we evaluate the predictive performance of a model:
- Training set error is an optimistically biased estimator of the generalization error
- Test set error is an unbiased estimator of the generalization error (test sample and hypothesis chosen independently)
- (in practice, it is actually pessimistically biased; why?)
- Holdout Method
- 2-Fold Cross-Validation
- Often using the holdout method is not a good idea ...
- Test set error as generalization error estimator is pessimistically biased (not so bad)
- But it does not account for variance in the training data (bad)
- Why is pessimistic bias not "so bad"?
- Suppose we have the following ranking based on accuracy:
- Often using the holdout method is not a good idea ...
- Test set error as generalization error estimator is pessimistically biased (not so bad)
- Does not account for variance in the training data (bad)
- We have to keep in mind that a dataset represents a random sample drawn from a probability distribution, and we typically assume that this sample is representative of the true population – more or less. Now, further subsampling without replacement alters the statistic (mean, proportion, and variance) of the sample. The degree to which subsampling without replacement affects the statistic of a sample is inversely proportional to the size of the sample. Let us have a look at an example using the Iris dataset 1 , which we randomly divide into 2/3 training data and 1/3 test data as illustrated in Figure 1. (The source code for generating this graphic is available on GitHub2 .)
- Issues with Subsampling (Independence violation)
- All samples (n = 150)
- Training samples (n = 100)
- Test samples (n = 50)
- Figure 1: Distribution of Iris flower classes upon random subsampling into training and test sets.
- The Iris dataset consists of 50 Setosa, 50 Versicolor, and 50 Virginica flowers; the flower species are distributed uniformly:
- 33.3% Setosa
- 33.3% Versicolor
- 페이지 수
- 51 페이지
- 업로더
- Uni24h
설명
Trích nội dung tài liệu
Lecture 09 Model Evaluation 2: Confidence Intervals STAT 479: Machine Learning, Fall 2018 Sebastian Raschka http://stat.wisc.edu/~sraschka/teaching/stat479-fs2018/ Sebastian Raschka STAT 479: Machine Learning FS 2018 1 Overview Bias and Variance Basics Overfitting and Underfitting This Lecture Holdout method Confidence Intervals Model Eval Lectures Repeated holdout Resampling methods Empirical confidence intervals Hyperparameter tuning Cross-Validation Model selection Algorithm Selection Statistical Tests Evaluation Metrics Sebastian Raschka STAT 479: Machine Learning FS 2018 2 Concepts first (More) Code at the end of the lecture Sebastian Raschka STAT 479: Machine Learning FS 2018 3 Main points why we evaluate the predictive performance of a model: 1. Want to estimate the generalization performance, the predictive performance of our model on future (unseen) data. 2. Want to increase the predictive performance by tweaking the learning algorithm and selecting the best performing model from a given hypothesis space. 3. Want to identify the ML algorithm that is best-suited for the problem at hand; thus, we want to compare different algorithms, selecting the best-performing one as well as the best performing model from the algorithm’s hypothesis space. Sebastian Raschka STAT 479: Machine Learning FS 2018 4 Training set error is an optimistically biased estimator of the generalization error Test set error is an unbiased estimator of the generalization error (test sample and hypothesis chosen independently) (in practice, it is actually pessimistically biased; why?) Sebastian Raschka STAT 479: Machine Learning FS 2018 5 Training Evaluation 1 2 3 4 5 6 7 8 9 10 1 2 3 4 5 6 7 8 9 10 Holdout Method 2-Fold Cross-Validation 1 2 3 4 5 6 7 8 9 10 Sebastian Raschka STAT 479: Machine Learning FS 2018 6 Often using the holdout method is not a good idea ... Sebastian Raschka STAT 479: Machine Learning FS 2018 7 Often
자주 묻는 질문
이 문서는 무료인가요?
네. “Eval ci slides (09) (Đánh giá mô hình, tập trung vào khoảng tin cậy) - Sebastian Raschka” 문서는 무료입니다. 로그인 후 '다운로드'를 클릭하여 원본 파일을 받으세요.
이 문서는 몇 페이지로 되어 있나요?
이 문서는 51페이지입니다, Machine learning 과정용. 다운로드하기 전에 온라인으로 미리 볼 수 있습니다.
다운로드하기 전에 미리 볼 수 있나요?
네. 이 페이지의 온라인 리더를 통해 문서를 미리 본 후 다운로드 여부를 결정할 수 있습니다.
Eval ci slides (09) (Đánh giá mô hình, tập trung vào khoảng tin cậy) - Sebastian Raschka
미리보기 생성 중...
Trích nội dung tài liệu
Lecture 09 Model Evaluation 2: Confidence Intervals STAT 479: Machine Learning, Fall 2018 Sebastian Raschka http://stat.wisc.edu/~sraschka/teaching/stat479-fs2018/ Sebastian Raschka STAT 479: Machine Learning FS 2018 1 Overview Bias and Variance Basics Overfitting and Underfitting This Lecture Holdout method Confidence Intervals Model Eval Lectures Repeated holdout Resampling methods Empirical confidence intervals Hyperparameter tuning Cross-Validation Model selection Algorithm Selection Statistical Tests Evaluation Metrics Sebastian Raschka STAT 479: Machine Learning FS 2018 2 Concepts first (More) Code at the end of the lecture Sebastian Raschka STAT 479: Machine Learning FS 2018 3 Main points why we evaluate the predictive performance of a model: 1. Want to estimate the generalization performance, the predictive performance of our model on future (unseen) data. 2. Want to increase the predictive performance by tweaking the learning algorithm and selecting the best performing model from a given hypothesis space. 3. Want to identify the ML algorithm that is best-suited for the problem at hand; thus, we want to compare different algorithms, selecting the best-performing one as well as the best performing model from the algorithm’s hypothesis space. Sebastian Raschka STAT 479: Machine Learning FS 2018 4 Training set error is an optimistically biased estimator of the generalization error Test set error is an unbiased estimator of the generalization error (test sample and hypothesis chosen independently) (in practice, it is actually pessimistically biased; why?) Sebastian Raschka STAT 479: Machine Learning FS 2018 5 Training Evaluation 1 2 3 4 5 6 7 8 9 10 1 2 3 4 5 6 7 8 9 10 Holdout Method 2-Fold Cross-Validation 1 2 3 4 5 6 7 8 9 10 Sebastian Raschka STAT 479: Machine Learning FS 2018 6 Often using the holdout method is not a good idea ... Sebastian Raschka STAT 479: Machine Learning FS 2018 7 Often
- 문서명
- Eval ci slides (09) (Đánh giá mô hình, tập trung vào khoảng tin cậy) - Sebastian Raschka
- 학교 / 강의
- University Wisconsin-Madison · Machine learning
- 작성자 (문서 내)
- Sebastian Raschka
- 내용
- Bài giảng này giới thiệu về đánh giá mô hình học máy, tập trung vào khoảng tin cậy và các phương pháp như Holdout. Nó chỉ ra những hạn chế của phương pháp Holdout, đặc biệt là ảnh hưởng của việc lấy mẫu con lên tính đại diện của dữ liệu.
- 목차
- Lecture 09
- Model Evaluation 2: Confidence Intervals
- STAT 479: Machine Learning, Fall 2018
- Sebastian Raschka
- Overview
- Bias and Variance
- Basics
- Overfitting and Underfitting
- This Lecture
- Holdout method
- Confidence Intervals
- Model Eval Lectures
- Repeated holdout
- Resampling methods
- Empirical confidence intervals
- Hyperparameter tuning
- Cross-Validation
- Model selection
- Algorithm Selection
- Statistical Tests
- Evaluation Metrics
- Main points why we evaluate the predictive performance of a model:
- Training set error is an optimistically biased estimator of the generalization error
- Test set error is an unbiased estimator of the generalization error (test sample and hypothesis chosen independently)
- (in practice, it is actually pessimistically biased; why?)
- Holdout Method
- 2-Fold Cross-Validation
- Often using the holdout method is not a good idea ...
- Test set error as generalization error estimator is pessimistically biased (not so bad)
- But it does not account for variance in the training data (bad)
- Why is pessimistic bias not "so bad"?
- Suppose we have the following ranking based on accuracy:
- Often using the holdout method is not a good idea ...
- Test set error as generalization error estimator is pessimistically biased (not so bad)
- Does not account for variance in the training data (bad)
- We have to keep in mind that a dataset represents a random sample drawn from a probability distribution, and we typically assume that this sample is representative of the true population – more or less. Now, further subsampling without replacement alters the statistic (mean, proportion, and variance) of the sample. The degree to which subsampling without replacement affects the statistic of a sample is inversely proportional to the size of the sample. Let us have a look at an example using the Iris dataset 1 , which we randomly divide into 2/3 training data and 1/3 test data as illustrated in Figure 1. (The source code for generating this graphic is available on GitHub2 .)
- Issues with Subsampling (Independence violation)
- All samples (n = 150)
- Training samples (n = 100)
- Test samples (n = 50)
- Figure 1: Distribution of Iris flower classes upon random subsampling into training and test sets.
- The Iris dataset consists of 50 Setosa, 50 Versicolor, and 50 Virginica flowers; the flower species are distributed uniformly:
- 33.3% Setosa
- 33.3% Versicolor
- 페이지 수
- 51 페이지
- 업로더
- Uni24h
댓글 (0)
댓글이 없습니다. 첫 댓글을 남겨보세요!
Trees notes (06) (Cây quyết định trong Máy học) - Sebastian Raschka
Feat extract slides (14) (Giảm chiều dữ liệu, tập trung vào trích xuất đặc trưng) - Sebastian Raschka
Eval intro slides (08) (Đánh giá mô hình, overfitting và underfitting, phân rã bias-variance trong Máy học) - Sebastian Raschka
Machine learning tips and tricks (Tổng hợp mẹo về học máy)
Eval algo notes (11) (Các kiểm định thống kê và so sánh thuật toán) - Sebastian Raschka
Tổng hợp Đề Toán 5 - Luyện thi vào Lớp 6 - CLB EMath
Bài giảng vật lý đại cương (Chương 3) - Đỗ Ngọc Uấn
Chương 8.Nguyên tử - Vật lý đại cương 3 - TS.Nguyễn Thị Trang
Chương 7.Cơ học lượng tử - Vật lý đại cương 3 - TS.Nguyễn Thị Trang
Chương 6.Quang học lượng tử - Vật lý đại cương 3 - TS.Nguyễn Thị Trang

댓글 (0)
댓글이 없습니다. 첫 댓글을 남겨보세요!