README.md 378 字节
Newer Older
M
MRXLT 已提交
1 2 3 4 5 6 7 8 9 10 11 12
### 使用方法

假设数据文件为test.data,配置文件为inference.conf

单进程client
```
cat test.data | python test_client.py > result
```
多进程client,若进程数为4
```
python test_client_multithread.py inference.conf test.data 4 > result
```
M
MRXLT 已提交
13 14
batch clienit,若batch size为4
```
M
MRXLT 已提交
15
cat test.data | python test_client_batch.py inference.conf 4 > result
M
MRXLT 已提交
16
```