Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
tdde01-ht24
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mehce338-felra653-sigjo290
tdde01-ht24
Commits
e3b69800
Commit
e3b69800
authored
4 months ago
by
Felix Ramnelöv
Browse files
Options
Downloads
Patches
Plain Diff
Lab 1: Fixes
parent
5bda97e2
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
lab1/assignment2.R
+4
-3
4 additions, 3 deletions
lab1/assignment2.R
lab1/lab-notes.md
+6
-6
6 additions, 6 deletions
lab1/lab-notes.md
with
10 additions
and
9 deletions
lab1/assignment2.R
+
4
−
3
View file @
e3b69800
...
...
@@ -54,14 +54,15 @@ print(paste("MSE on the test data:", mse(test_scaled$motor_UPDRS, test_pred)))
# Loglikelihood
log_likelihood
<-
function
(
theta
,
sigma
)
{
n
<-
length
(
y_train
)
ll
<-
-
n
/
2
*
log
(
sqrt
(
2
*
pi
)
*
sigma
)
-
(
1
/
(
2
*
sigma
^
2
))
*
sum
((
y_train
-
as.matrix
(
X_train
)
%*%
theta
)
^
2
)
ll
<-
-
n
/
2
*
log
(
2
*
pi
)
-
n
*
log
(
sigma
)
-
(
1
/
(
2
*
sigma
^
2
))
*
sum
((
y_train
-
as.matrix
(
X_train
)
%*%
theta
)
^
2
)
return
(
ll
)
}
# Ridge
ridge
<-
function
(
theta
,
sigma
,
lambda
)
{
ridge
<-
-
log_likelihood
(
theta
,
sigma
)
+
lambda
*
sum
(
theta
^
2
)
ridge
<-
-
log_likelihood
(
theta
,
sigma
)
+
lambda
*
sum
(
theta
^
2
)
return
(
ridge
)
}
...
...
This diff is collapsed.
Click to expand it.
lab1/lab-notes.md
+
6
−
6
View file @
e3b69800
...
...
@@ -112,16 +112,16 @@ Confusion matrix o misclassification error e framtana.
4.
Optimal $
\b
old{
\t
heta}$ for $
\l
ambda
\i
n
\{
1,100,1000
\}
$:
-
$
\l
ambda = 1$:
-
$
\t
ext{MSE}_{
\t
ext{train}} = 0.8786
8144889797
4$:
-
$
\t
ext{MSE}_{
\t
ext{test}} = 0.934
684486872397
$:
-
$
\t
ext{MSE}_{
\t
ext{train}} = 0.8786
2707597960
4$:
-
$
\t
ext{MSE}_{
\t
ext{test}} = 0.934
99698041696
$:
-
$df = 13.8607362829965$
-
$
\l
ambda = 100$:
-
$
\t
ext{MSE}_{
\t
ext{train}} = 0.88
9775499501371
$
-
$
\t
ext{MSE}_{
\t
ext{test}} = 0.93
4131808081541
$
-
$
\t
ext{MSE}_{
\t
ext{train}} = 0.88
4410431119223
$
-
$
\t
ext{MSE}_{
\t
ext{test}} = 0.93
2331719427938
$
-
$df = 9.92488712829542$
-
$
\l
ambda = 1000$:
-
$
\t
ext{MSE}_{
\t
ext{train}} = 0.9
39949118364897
$
-
$
\t
ext{MSE}_{
\t
ext{test}} = 0.9
67756869359676
$
-
$
\t
ext{MSE}_{
\t
ext{train}} = 0.9
21107873074395
$
-
$
\t
ext{MSE}_{
\t
ext{test}} = 0.9
53955470516858
$
-
$df = 5.6439254878463$
$
\l
ambda = 100$ seems to be the most suitable penalty parameter considering
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment