Results 6 issues of topxxuki

i just run the image and put a model to localhost:65327,the question is how can i use this model to do prediction? ``` docker run -p 65327:65327 -v /tmp/models:/models combustml/mleap-serving:0.9.0-SNAPSHOT...

i trained a model by using ` python main.py --dataset invoice --batch_size=8 --train --crop --epoch 5000` anyone knows how to generate a picture by this trained generator? i tried `python...

i try to load DeepLearning_model_python_1566875765599_1 , but it seems like the model cannot be load each and every time ,sometimes i can load the model successfully ,sometimes it throws a...

![image](https://user-images.githubusercontent.com/18697846/144378744-88d51f19-d6ca-41b8-a14c-6f6e0d47216c.png) 如上图所示,分箱模型中包含cust_xintuo_bal_mon_end, 但评分卡的训练结果报告中不包含改列。 发现其他例如 jj_if_continue_desc dq_ration_if_cntn_asc tran_ration_if_cntn_desc tran_ration_if_cntn_asc 分箱只有一个空箱的情况时,都不包含在评分卡的训练结果里。 ![image](https://user-images.githubusercontent.com/18697846/144378709-7c8b844a-517e-4a94-b921-e1a71652af22.png)

code: ``` from sklearn.datasets import load_iris import toad iris = load_iris() X = iris.data[:100] y = iris.target[:100] target_names = ['slen', 'swid', 'plen', 'pwid'] data = pd.DataFrame(X, columns =target_names) data["label"] =y...