Add readme file for MVQA 98/257198/3
authorKwang Son <k.son@samsung.com>
Wed, 21 Apr 2021 04:29:11 +0000 (13:29 +0900)
committerKwang Son <k.son@samsung.com>
Wed, 21 Apr 2021 05:23:47 +0000 (14:23 +0900)
Change-Id: I21a60641bac220bbb9ca3e34a4134fbaba85aa25
Signed-off-by: Kwang Son <k.son@samsung.com>
script/README.md [new file with mode: 0644]

diff --git a/script/README.md b/script/README.md
new file mode 100644 (file)
index 0000000..c8e05a5
--- /dev/null
@@ -0,0 +1,34 @@
+# Media Vision Quality Assessment
+Media Vision has unit test(TCT or test bench) to check functionality however does not have quality check (accuracy, memory, speed) for API.  
+Moreover, tizen support multiple target devices and profiles that developer hard to get compare of the various algorithms.  
+MVQA(Media Vision Quality Assessment) help to measure API(convention vision algorithm or deep learning) quality across devices and profile.
+
+## Goal
+Depends on hardware target or profile, MVQA measure each API quality and show it as charts.
+
+## Prerequisite
+Dataset for testing and place it on NAS server.
+
+## How to run
+1. change current directory to script and fill nas_config.json to communicate with server.  
+e.g.)
+```json
+{
+    "user": "iamroot",
+    "password": "rootpass",
+    "ip": "xxx.yyy.123.456",
+    "db_index_path": "/mvtest"
+}
+```
+note that `db_index_path` is path for dataset root.
+
+2. run python script for information
+```shell
+$ python3 mvqa_main.py -h
+```
+  or run it with test, dataset id.
+```shell
+$ python3 mvqa_main.py --dataset 1 --testset 1
+```
+
+3. program will store result as sql dataset (check mvqa.db file)
\ No newline at end of file