Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
tutorials
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor 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
Eclipse Projects
Eclipse Graphene
tutorials
Commits
60bf113a
Commit
60bf113a
authored
1 year ago
by
Martin Welss
Browse files
Options
Downloads
Patches
Plain Diff
Update file README.md
parent
f8201911
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Container_Specification/README.md
+36
-18
36 additions, 18 deletions
Container_Specification/README.md
with
36 additions
and
18 deletions
Container_Specification/README.md
+
36
−
18
View file @
60bf113a
...
@@ -342,7 +342,7 @@ When the Pipeline is started, the initial logs indicated in 2. are captured, all
...
@@ -342,7 +342,7 @@ When the Pipeline is started, the initial logs indicated in 2. are captured, all
A sample representation of the metrics logs for the news_training pipeline is as follows,
A sample representation of the metrics logs for the news_training pipeline is as follows,
`INFO:root:{'metrics': {'date_time': '2023-09-15 08:17:22', 'type': 'classification-metrics/v1', 'accuracy': 0.9247897267341614, 'validation_loss': 0.9067514538764954, 'status_text': 'success'}}`
`INFO:root:{'metrics': {'date_time': '2023-09-15 08:17:22', 'type': 'classification-metrics/v1',
'more-is-better': {
'accuracy': 0.9247897267341614
}
,
'less-is-better': {
'validation_loss': 0.9067514538764954
}
, 'status_text': 'success'}}`
A sample representation of the output in the metadata file is as shown below,
A sample representation of the output in the metadata file is as shown below,
...
@@ -368,8 +368,12 @@ A sample representation of the output in the metadata file is as shown below,
...
@@ -368,8 +368,12 @@ A sample representation of the output in the metadata file is as shown below,
"metrics"
:
{
"metrics"
:
{
"date_time"
:
"2023-09-12 06:00:09"
,
"date_time"
:
"2023-09-12 06:00:09"
,
"type"
:
"classification-metrics/v1"
,
"type"
:
"classification-metrics/v1"
,
"accuracy"
:
0.9239237904548645
,
"more_is_better"
:
{
"validation_loss"
:
0.9049152731895447
,
"accuracy"
:
0.9239237904548645
},
"less_is_better"
:
{
"validation_loss"
:
0.9049152731895447
}
"status_text"
:
"success"
"status_text"
:
"success"
}
}
}
}
...
@@ -414,9 +418,13 @@ A sample:
...
@@ -414,9 +418,13 @@ A sample:
```
json
```
json
"metrics"
:
{
"metrics"
:
{
"date_time"
:
"2023-09-15 08:17:22"
,
"date_time"
:
"2023-09-15 08:17:22"
,
"type"
:
"classification-metrics/v1"
,
"type"
:
"classification-metrics/v1"
,
"accuracy"
:
0.9247897267341614
,
"more_is_better"
:
{
"validation_loss"
:
0.9067514538764954
,
"accuracy"
:
0.9247897267341614
},
"less_is_better"
:
{
"validation_loss"
:
0.9067514538764954
}
"status_text"
:
"success"
"status_text"
:
"success"
}
}
```
```
...
@@ -467,11 +475,15 @@ A sample:
...
@@ -467,11 +475,15 @@ A sample:
```
json
```
json
"metrics"
:
{
"metrics"
:
{
"date_time"
:
"2023-09-28 13:56:21"
,
"date_time"
:
"2023-09-28 13:56:21"
,
"type"
:
"regression-metrics/v1"
,
"type"
:
"regression-metrics/v1"
,
"mse"
:
0.0025680503998073007
,
"less_is_better"
:
{
"rmse"
:
0.05067593511527242
,
"mse"
:
0.0025680503998073007
,
"r_squared"
:
0.831178119365146
,
"rmse"
:
0.05067593511527242
"adjusted_r_squared"
:
0.8270170166734419
,
},
"more_is_better"
:
{
"r_squared"
:
0.831178119365146
,
"adjusted_r_squared"
:
0.8270170166734419
}
"status_text"
:
"success"
"status_text"
:
"success"
}
}
```
```
...
@@ -550,18 +562,24 @@ A sample extension of the metadata for the metrics into training and testing pha
...
@@ -550,18 +562,24 @@ A sample extension of the metadata for the metrics into training and testing pha
{
{
"type"
:
"classification-training-metrics/v1"
,
"type"
:
"classification-training-metrics/v1"
,
"date_time"
:
"2023-09-07 07:28:51"
,
"date_time"
:
"2023-09-07 07:28:51"
,
"training_accuracy"
:
0.9257
,
"more_is_better"
:
{
"training_loss"
:
0.3606
,
"training_accuracy"
:
0.9257
,
"validation_accuracy"
:
0.8051
,
"validation_accuracy"
:
0.8051
"validation_loss"
:
0.8978
,
},
"less_is_better"
:
{
"training_loss"
:
0.3606
,
"validation_loss"
:
0.8978
},
"status_text"
:
"success"
"status_text"
:
"success"
},
},
{
{
"type"
:
"classification-testing-metrics/v1"
,
"type"
:
"classification-testing-metrics/v1"
,
"date_time"
:
"2023-09-07 07:28:51"
,
"date_time"
:
"2023-09-07 07:28:51"
,
"F1 Score"
:
0.8512
,
"more_is_better"
:
{
"Specificity"
:
0.9036
,
"F1 Score"
:
0.8512
,
"ROC-AUC"
:
0.9205
,
"Specificity"
:
0.9036
,
"ROC-AUC"
:
0.9205
}
"status_text"
:
"success"
"status_text"
:
"success"
}
}
]
]
...
...
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