Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
asr-benchmarks
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Redmine
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Marcin Wątroba
asr-benchmarks
Merge requests
!13
Change data model
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
Merged
Change data model
change_data_model
into
main
Overview
1
Commits
30
Pipelines
0
Changes
232
Merged
Change data model
Marcin Wątroba
requested to merge
change_data_model
into
main
Dec 28, 2021
Overview
1
Commits
30
Pipelines
0
Changes
232
Created by: markowanga
0
0
Merge request reports
Compare
main
main (base)
and
latest version
latest version
13f918e6
30 commits,
Nov 18, 2022
232 files
+
17441
−
655
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
232
.dvc/plots/confusion.json
0 → 100644
+
107
−
0
View file @ 13f918e6
Edit in single-file editor
Open in Web IDE
{
"$schema"
:
"https://vega.github.io/schema/vega-lite/v5.json"
,
"data"
:
{
"values"
:
"<DVC_METRIC_DATA>"
},
"title"
:
"<DVC_METRIC_TITLE>"
,
"facet"
:
{
"field"
:
"rev"
,
"type"
:
"nominal"
},
"spec"
:
{
"transform"
:
[
{
"aggregate"
:
[
{
"op"
:
"count"
,
"as"
:
"xy_count"
}
],
"groupby"
:
[
"<DVC_METRIC_Y>"
,
"<DVC_METRIC_X>"
]
},
{
"impute"
:
"xy_count"
,
"groupby"
:
[
"rev"
,
"<DVC_METRIC_Y>"
],
"key"
:
"<DVC_METRIC_X>"
,
"value"
:
0
},
{
"impute"
:
"xy_count"
,
"groupby"
:
[
"rev"
,
"<DVC_METRIC_X>"
],
"key"
:
"<DVC_METRIC_Y>"
,
"value"
:
0
},
{
"joinaggregate"
:
[
{
"op"
:
"max"
,
"field"
:
"xy_count"
,
"as"
:
"max_count"
}
],
"groupby"
:
[]
},
{
"calculate"
:
"datum.xy_count / datum.max_count"
,
"as"
:
"percent_of_max"
}
],
"encoding"
:
{
"x"
:
{
"field"
:
"<DVC_METRIC_X>"
,
"type"
:
"nominal"
,
"sort"
:
"ascending"
,
"title"
:
"<DVC_METRIC_X_LABEL>"
},
"y"
:
{
"field"
:
"<DVC_METRIC_Y>"
,
"type"
:
"nominal"
,
"sort"
:
"ascending"
,
"title"
:
"<DVC_METRIC_Y_LABEL>"
}
},
"layer"
:
[
{
"mark"
:
"rect"
,
"width"
:
300
,
"height"
:
300
,
"encoding"
:
{
"color"
:
{
"field"
:
"xy_count"
,
"type"
:
"quantitative"
,
"title"
:
""
,
"scale"
:
{
"domainMin"
:
0
,
"nice"
:
true
}
}
}
},
{
"mark"
:
"text"
,
"encoding"
:
{
"text"
:
{
"field"
:
"xy_count"
,
"type"
:
"quantitative"
},
"color"
:
{
"condition"
:
{
"test"
:
"datum.percent_of_max > 0.5"
,
"value"
:
"white"
},
"value"
:
"black"
}
}
}
]
}
}
Loading