Chen Zihao

Results 7 comments of Chen Zihao

> Hey @chenz1hao, Thanks for opening the issue. I've not seen any errors like that for alibi. Our AnchorTabular implementation allows for a mix of numerical and categorical features. The...

but the problem still till now. ![image](https://user-images.githubusercontent.com/16265544/141255028-a566abb2-9cf8-4869-81e9-43704d65b0e3.png)

我理解是用workerpool是防止因为req瞬时过多导致goroutine无限增大导致内存溢出了,至于你说的保证一个connection中req的顺序确实这样也是可以做到的,因为它负载的时候一个conn都给了一个消息队列,但是我觉得他设计的初衷还是前面那个原因

> 我的理解是对于保序这方面zinx并没有提供类似TCP的序列号的机制. 而开启了工作池以后,采取的是轮询的方式,而每个worker是独立的goroutine,因此处理顺序实际上也不是按照req发送的顺序来的. 所以无论是开不开启工作池,处理req的顺序都不固定. 项目里实现的貌似也不是轮询的方式,是根据ConnectionID % WorkerPoolSize 来确定给哪个Worker,那么相当于同一个ConnID的消息必定会给同一个worker的消息队列,这里他消息队列也是按照管道的结构来组织的是先进先出的,就相当于保证了一个Connection的消息按照发送的顺序来处理。

Dataset: [http://bit.ly/xMLdataset](url) (a binary classification task), I ran logistic regression (from sklearn) on this dataset and compare with DES methods (code copy from documentation) no normalized no any preprocessing just...

```python def AUC_plot(algorithmName, test_y, pred_y_prob): # print(algorithmName, "AUC图像绘制:") fpr, tpr, thresholds = roc_curve(test_y, pred_y_prob) auc = roc_auc_score(test_y, pred_y_prob) plt.plot(fpr, tpr) plt.title(algorithmName+" AUC=%.4f" % (auc)) plt.xlabel("False Positive Rate") plt.ylabel("True Positive Rate")...

> 卡方和决策树都有,可以通过method参数设置 请问下,最优分箱是一种具体的分箱算法吗,还是卡方 决策树都是叫做最优分箱呀?