Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

问题及修复汇总 #3

Open
ArachisTong opened this issue Dec 4, 2024 · 0 comments
Open

问题及修复汇总 #3

ArachisTong opened this issue Dec 4, 2024 · 0 comments

Comments

@ArachisTong
Copy link

1.msl任务也会赋值domain_mask为None
image

2.validation 阶段给入的val_x有问题,predict报错;
best_model = model.fit(train_model_input, train[target].values, batch_size=train_batch_size, epochs=epochs, validation_data=(test_model_input, test[target].values))
改为:
best_model = model.fit(train_model_input, train[target].values, batch_size=train_batch_size, epochs=epochs, validation_split=0.)

3.未引入sklearn.metrics的roc_auc_score, log_loss
在main.py新增from sklearn.metrics import roc_auc_score, log_loss

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant