Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
J
java-wowa-training
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
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
cylab
java-wowa-training
Commits
42150423
Commit
42150423
authored
5 years ago
by
a.croix
Browse files
Options
Downloads
Patches
Plain Diff
Add space and \n to store results in file correctly
parent
2b0dbec9
No related branches found
No related tags found
1 merge request
!4
Neural network
Pipeline
#2322
failed
5 years ago
Stage: leaks
Stage: test
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/main/java/be/cylab/java/wowa/training/MainDL4J.java
+5
-4
5 additions, 4 deletions
src/main/java/be/cylab/java/wowa/training/MainDL4J.java
with
5 additions
and
4 deletions
src/main/java/be/cylab/java/wowa/training/MainDL4J.java
+
5
−
4
View file @
42150423
...
@@ -84,10 +84,11 @@ public final class MainDL4J {
...
@@ -84,10 +84,11 @@ public final class MainDL4J {
new
FileOutputStream
(
"Synthesis_average_AUC.txt"
,
true
),
new
FileOutputStream
(
"Synthesis_average_AUC.txt"
,
true
),
StandardCharsets
.
UTF_8
))
{
StandardCharsets
.
UTF_8
))
{
writer
.
write
(
"Neuron number : "
+
neuron_number
writer
.
write
(
"Neuron number : "
+
neuron_number
+
"Learning rate : "
+
learning_rate
+
" Learning rate : "
+
learning_rate
+
"Algorithm : "
+
args
[
3
]
+
" Algorithm : "
+
args
[
3
]
+
"Activation function : "
+
args
[
4
]
+
" Activation function : "
+
args
[
4
]
+
"Average AUC = "
+
(
average_auc
/
fold_number
));
+
" Average AUC = "
+
(
average_auc
/
fold_number
)
+
"\n"
);
}
catch
(
IOException
e
)
{
}
catch
(
IOException
e
)
{
e
.
printStackTrace
();
e
.
printStackTrace
();
}
}
...
...
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