Skip to content

Commit

Permalink
feature/grafana-entropy (#187)
Browse files Browse the repository at this point in the history
* added entropy graphing

* updated with moving average
  • Loading branch information
MarkRoss-Eviden authored Sep 20, 2024
1 parent d236c1a commit c83949e
Showing 1 changed file with 199 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1039,6 +1039,205 @@
],
"title": "Training Complete Lap times",
"type": "timeseries"
},
{
"datasource": {},
"description": "",
"fieldConfig": {
"defaults": {
"color": {
"mode": "palette-classic"
},
"custom": {
"axisBorderShow": false,
"axisCenteredZero": false,
"axisColorMode": "text",
"axisLabel": "",
"axisPlacement": "auto",
"barAlignment": 0,
"drawStyle": "points",
"fillOpacity": 0,
"gradientMode": "none",
"hideFrom": {
"legend": false,
"tooltip": false,
"viz": false
},
"insertNulls": false,
"lineInterpolation": "linear",
"lineWidth": 1,
"pointSize": 5,
"scaleDistribution": {
"type": "linear"
},
"showPoints": "auto",
"spanNulls": false,
"stacking": {
"group": "A",
"mode": "none"
},
"thresholdsStyle": {
"mode": "off"
}
},
"mappings": [],
"thresholds": {
"mode": "absolute",
"steps": [
{
"color": "green",
"value": null
},
{
"color": "red",
"value": 80
}
]
}
},
"overrides": [
{
"matcher": {
"id": "byRegexp",
"options": ".*entropy moving average"
},
"properties": [
{
"id": "custom.drawStyle",
"value": "line"
},
{
"id": "custom.showPoints",
"value": "never"
},
{
"id": "color",
"value": {
"fixedColor": "blue",
"mode": "fixed"
}
}
]
}
]
},
"gridPos": {
"h": 11,
"w": 24,
"x": 0,
"y": 31
},
"id": 7,
"options": {
"legend": {
"calcs": [
"min",
"mean",
"max",
"lastNotNull"
],
"displayMode": "table",
"placement": "bottom",
"showLegend": true
},
"tooltip": {
"mode": "single",
"sort": "none"
}
},
"targets": [
{
"alias": "$tag_model entropy",
"datasource": {},
"groupBy": [
{
"params": [
"$__interval"
],
"type": "time"
},
{
"params": [
"model"
],
"type": "tag"
},
{
"params": [
"none"
],
"type": "fill"
}
],
"measurement": "dr_sagemaker_epochs",
"orderByTime": "ASC",
"policy": "default",
"refId": "A",
"resultFormat": "time_series",
"select": [
[
{
"params": [
"entropy"
],
"type": "field"
},
{
"params": [],
"type": "mean"
}
]
],
"tags": []
},
{
"alias": "$tag_model entropy moving average",
"datasource": {},
"groupBy": [
{
"params": [
"$__interval"
],
"type": "time"
},
{
"params": [
"model"
],
"type": "tag"
}
],
"hide": false,
"measurement": "dr_sagemaker_epochs",
"orderByTime": "ASC",
"policy": "default",
"refId": "B",
"resultFormat": "time_series",
"select": [
[
{
"params": [
"entropy"
],
"type": "field"
},
{
"params": [],
"type": "mean"
},
{
"params": [
10
],
"type": "moving_average"
}
]
],
"tags": []
}
],
"title": "Epoch",
"type": "timeseries"
}
],
"refresh": "10s",
Expand Down

0 comments on commit c83949e

Please sign in to comment.