mirror of
https://github.com/mozilla/DeepSpeech.git
synced 2025-10-26 11:19:39 +00:00
11 lines
166 B
Python
Executable File
11 lines
166 B
Python
Executable File
#!/usr/bin/env python
|
|
|
|
import sys
|
|
|
|
import os
|
|
sys.path.append(os.path.abspath('.'))
|
|
|
|
from util.gpu_usage import GPUUsageChart
|
|
|
|
GPUUsageChart(sys.argv[1], sys.argv[2])
|