README.md 393 字节
Newer Older
M
MRXLT 已提交
1 2 3 4 5 6
### 使用方法

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

单进程client
```
M
MRXLT 已提交
7
cat test.data | python test_client.py inference.conf > result
M
MRXLT 已提交
8 9 10 11 12
```
多进程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
```