-
Notifications
You must be signed in to change notification settings - Fork 3.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improve dashboards for analytics. (#130)
- Loading branch information
Showing
2 changed files
with
156 additions
and
66 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,90 @@ | ||
# Analytics for Computer Vision Annotation Tool (CVAT) | ||
|
||
At the moment it is not possible to save advanced settings. Below values should be specified manually. | ||
|
||
## Time picker default | ||
{ | ||
"from": "now/d", | ||
"to": "now/d", | ||
"display": "Today", | ||
"section": 0 | ||
} | ||
|
||
## Time picker quick ranges | ||
|
||
```json | ||
[ | ||
{ | ||
"from": "now/d", | ||
"to": "now/d", | ||
"display": "Today", | ||
"section": 0 | ||
}, | ||
{ | ||
"from": "now/w", | ||
"to": "now/w", | ||
"display": "This week", | ||
"section": 0 | ||
}, | ||
{ | ||
"from": "now/M", | ||
"to": "now/M", | ||
"display": "This month", | ||
"section": 0 | ||
}, | ||
{ | ||
"from": "now/y", | ||
"to": "now/y", | ||
"display": "This year", | ||
"section": 0 | ||
}, | ||
{ | ||
"from": "now/d", | ||
"to": "now", | ||
"display": "Today so far", | ||
"section": 2 | ||
}, | ||
{ | ||
"from": "now/w", | ||
"to": "now", | ||
"display": "Week to date", | ||
"section": 2 | ||
}, | ||
{ | ||
"from": "now/M", | ||
"to": "now", | ||
"display": "Month to date", | ||
"section": 2 | ||
}, | ||
{ | ||
"from": "now/y", | ||
"to": "now", | ||
"display": "Year to date", | ||
"section": 2 | ||
}, | ||
{ | ||
"from": "now-1d/d", | ||
"to": "now-1d/d", | ||
"display": "Yesterday", | ||
"section": 1 | ||
}, | ||
{ | ||
"from": "now-1w/w", | ||
"to": "now-1w/w", | ||
"display": "Previous week", | ||
"section": 1 | ||
}, | ||
{ | ||
"from": "now-1m/m", | ||
"to": "now-1m/m", | ||
"display": "Previous month", | ||
"section": 1 | ||
}, | ||
{ | ||
"from": "now-1y/y", | ||
"to": "now-1y/y", | ||
"display": "Previous year", | ||
"section": 1 | ||
} | ||
] | ||
``` |
Oops, something went wrong.