File size: 325 Bytes
c1a7f73 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
#!/bin/bash
export TF_CPP_MIN_LOG_LEVEL='2'
export PYTHONPATH='.'
# dump all features
echo 'Start dump all log features ...'
python dev/metrics/compute_metrics.py --dump_log --no_batch
sleep 20
# aggregate features
echo 'Start aggregate log features ...'
python dev/metrics/compute_metrics.py --aggregate_log
echo 'Done! |