[SOLVED] 代写 C algorithm security SIT384 Cyber security analytics

30 $

File Name: 代写_C_algorithm_security_SIT384_Cyber_security_analytics.zip
File Size: 555.78 KB

SKU: 8175794851 Category: Tags: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,

Or Upload Your Assignment Here:


SIT384 Cyber security analytics
Credit Task 9.1C: Grid Search with Cross-Validation
Task description:
C and Gamma are the parameters for a nonlinear support vector machine (SVM). The goal of SVM is to find a hyperplane that would leave the widest possible “cushion” between input points from two classes. There is a tradeoff between “narrow cushion, little / no mistakes” and “wide cushion, quite a few mistakes”.
Small C makes the cost of misclassificaiton low (“soft margin”), thus allowing more of them for the sake of wider “cushion”. Large C makes the cost of misclassification high (‘hard margin”), thus forcing the algorithm to explain the input data stricter and potentially overfit.
The goal is to find the balance between “not too strict” and “not too loose”. Gamma is the parameter of a Gaussian Kernel (to handle non-linear classification). Cross-validation and resampling, along with grid search, are good ways to finding the best C and gamma.
The following figure shows the process of finding the best parameters using grid search and cross- validation.
In this task, you are given a dataset, a parameter grid and cross-validation (CV) number, and try to find the best parameters C and gamma of SVM.
You are given:
• Dataset:
from sklearn.datasets import load_digits digits = load_digits()
X = digits.data
y = digits.target
• Parameter grid:
param_grid = {‘C’: [0.001, 0.01, 0.1, 1, 10, 100],
‘gamma’: [0.001, 0.01, 0.1, 1, 10, 100]}
• Other parameters of your setting

You are asked to:
• use Grid search with cross-validation to fit the data: SVC is the model, cv=5, return_train_score=True
• set random_state=0 when split train and test sets
• print grid_search.score of test dataset
• print grid_search.best_params_
• print grid_search.best_score_
• print grid_search.best_estimator_
Sample output as shown in the following figures are for demonstration purposes only. Yours might
be different from the provided.
Submission:
Submit the following files to OnTrack:
1. Your program source code (e.g. updated task9_1.py)
2. A screen shot of your program running
Check the following things before submitting: 1. Add proper comments to your code

Reviews

There are no reviews yet.

Only logged in customers who have purchased this product may leave a review.

Shopping Cart
[SOLVED] 代写 C algorithm security SIT384 Cyber security analytics
30 $