Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Evaluation künstlicher neuronaler Netze für eine OOS-Erkennung
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Container Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Dennis Willers
Evaluation künstlicher neuronaler Netze für eine OOS-Erkennung
Commits
54988faa
Commit
54988faa
authored
Feb 13, 2023
by
Dennis Willers
🏀
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Learning Rate entfernt
parent
27b4eb58
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
22 deletions
+4
-22
config.yaml
ressources/config/config.yaml
+2
-20
defineKNN.py
src/knn/defineKNN.py
+2
-2
No files found.
ressources/config/config.yaml
View file @
54988faa
...
...
@@ -6,29 +6,11 @@ bilder:
knn
:
epochs
:
10
exception_optimization_method
:
[
'
SGD'
]
[
'
SGD'
,
'
Ftrl'
]
exception_activation_funktion_2
:
[
'
ReLU'
]
ignoreKnnCombinations
:
[
[
'
SGD'
,
'
ReLU'
,
'
sigmoid'
],
[
'
SGD'
,
'
sigmoid'
,
'
sigmoid'
],
# Adam Complete List
[
'
Adam'
,
'
ReLU'
,
'
sigmoid'
],
[
'
Adam'
,
'
sigmoid'
,
'
sigmoid'
],
# master_1
[
'
Adam'
,
'
tanh'
,
'
sigmoid'
],
[
'
Adam'
,
'
softmax'
,
'
sigmoid'
],
[
'
Adam'
,
'
sigmoid'
,
'
tanh'
],
[
'
Adam'
,
'
softmax'
,
'
tanh'
],
[
'
Adam'
,
'
ReLU'
,
'
tanh'
],
# master_2
[
'
Adam'
,
'
tanh'
,
'
tanh'
],
[
'
Adam'
,
'
sigmoid'
,
'
softmax'
],
[
'
Adam'
,
'
tanh'
,
'
softmax'
],
[
'
Adam'
,
'
ReLU'
,
'
softmax'
],
[
'
Adam'
,
'
softmax'
,
'
softmax'
]
]
[]
result
:
plot_path
:
"
ressources/results/plot/"
excel_path
:
"
ressources/results/excel/"
src/knn/defineKNN.py
View file @
54988faa
...
...
@@ -49,7 +49,7 @@ def get_optimization_method(optimization_method):
if
optimization_method
==
Optimierungsverfahren
.
SGD
:
return
tf
.
keras
.
optimizers
.
SGD
(
learning_rate
=
0.001
,
momentum
=
0.9
)
if
optimization_method
==
Optimierungsverfahren
.
Adam
:
return
tf
.
keras
.
optimizers
.
Adam
(
learning_rate
=
0.001
)
return
tf
.
keras
.
optimizers
.
Adam
()
if
optimization_method
==
Optimierungsverfahren
.
Ftrl
:
return
tf
.
keras
.
optimizers
.
Ftrl
(
learning_rate
=
0.001
)
return
tf
.
keras
.
optimizers
.
Ftrl
()
return
None
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment