File size: 977 Bytes
7b5e67a e3c5cfc 7b5e67a e3c5cfc 7b5e67a e3c5cfc 7b5e67a 98ac1fb c922631 98ac1fb 7b5e67a |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 |
# Training Dynamic
unzip: training_dynamic.tar.gz
demo data store in /training_dynamic
# evaluate subject model
```
conda activate myvenv
python subject_model_eval.py
```
The trainig dynamic performance will be store in /training_dynamic/Model/subject_model_eval.json
# Run trustvis
```
conda activate myvenv
# proxy only
python porxy.py --epoch 1/2/3 (default 3)
the vis result will be store in /training_dynamic/Proxy/***.png
the evaluation resulte wiil be store in /training_dynamic/Model/proxy_eval.json
# trustvis with AL
python active_learning.py --epoch 1/2/3 (default 3)
the vis result will be store in /training_dynamic/Trust_al/***.png
the evaluation resulte wiil be store in /training_dynamic/Model/trustvis_al_eval.json
```
# Run Tool
unzip /Tool/backend.zip and /Tool/frontend.zip
```
# backend
cd /Tool/backend/server
python server.py
# frontend
cd /Tool/frontend
use browser open standalone.html
input content_path and backend ip
click login
``` |