leafjungle
leafjungle
I did an experiment with two tools: guetzli and opencv(version:2.4, imwrite function). And I found that opencv is much faster(100+ seconds VS 80ms), while the PSNR and compress ratio is...
self._zk_client = get_zk_client() self._zk_client.start() ChildrenWatch(self._zk_client, TASK_ZK_PATH, func=self.get_work, send_event=True) print "123" def get_work(self, children, event) ..... I meet some problems: (1) the event in get_work is always None (I add a...
for spark applications, we can only see the printed logs on driver. And I think it is possible to display the executor's log on jupyter since the executor and driver...
21/02/04 15:13:00 ERROR ApplicationMaster: User class threw exception: java.lang.AbstractMethodError: com.tencent.angel.pytorch.graph.gcn.GCN.org$apache$spark$ml$param$Params$_setter_$paramMap_$eq(Lorg/apache/spark/ml/param/ParamMap;)V java.lang.AbstractMethodError: com.tencent.angel.pytorch.graph.gcn.GCN.org$apache$spark$ml$param$Params$_setter_$paramMap_$eq(Lorg/apache/spark/ml/param/ParamMap;)V at org.apache.spark.ml.param.Params$class.$init$(params.scala:868) at com.tencent.angel.pytorch.graph.gcn.GNN.(GNN.scala:39) at com.tencent.angel.pytorch.graph.gcn.GNN.(GNN.scala:46) 
(1) if my python code is developed by python2.7, is it possible to be deployed in triton as a python backend? (2) what is the environment requirments for python backend...
I print process id and thread id in the infer_func. python myserver.py (PID x1) --tritonserver(PID x2) --triton_python_backend_stub(PID x3) --triton_python_backend_stub(PID x4) But I find infer_func's PID = x1, but why? the...