Mark

Results 6 issues of Mark

![image](https://user-images.githubusercontent.com/28584805/99381636-535bcd80-2906-11eb-9936-b0aab9d666f2.png)

诚然, 底层人员没有机会发出自己的声音, 但是高级技术总不会没有一点反映吧. 难道高级管理者一点不受这些限制的影响么?

参见这里的[讨论](https://github.com/modelscope/modelscope/issues/918)

这个错误应该有段时间了 参看这里[改动](https://github.com/smartmark-pro/modelscope/commit/041ab903d5c680f7a3093ba51a3481f335ea1ac3) 如果使用原来的调用方式 ``` pipeline_ins([self.input, self.input_2, self.input_3], run_kwargs) ``` 实际没有触发批量推理, 还是逐个执行的 如果使用直接传入 batch_size的方式调用, 会出现这样的结果 ``` sents = [self.input, self.input_2, self.input_3, self.input_4, self.input_law] rs1 = pipeline_ins(sents, batch_size=8) FAIL: test_run_with_model_name_batch (__main__.TextErrorCorrectionTest) ----------------------------------------------------------------------...