DeepTables icon indicating copy to clipboard operation
DeepTables copied to clipboard

DeepTables: Deep-learning Toolkit for Tabular data

Results 28 DeepTables issues
Sort by recently updated
recently updated
newest added

Please make sure that this is a feature request. **System information** - DeepTables version: 0.2.3.1 - Are you willing to contribute it: No **Describe the feature and the current behavior/state.**...

Hey, got this error: `AttributeError: module 'sklearn.utils' has no attribute '_deprecate_positional_args' ` I believe it is due to the new version of sckiti-learn.

After training my deeptable model,i used `dt.save('mypath')` to store it. However, the model was not saved to the path i set. Instead, it was saved to `/tmp/workdir/mypath`. That's quite strange....

您好,想咨询下deeptable调参问题 1.二分类数据集,正负样本比例不平衡(10 : 1),使用xgboost可以设置样本权重,deeptable是否有类似参数可以设置呢? 2.针对正负样本比例不平衡的数据集,有什么参数设置让模型得到比较好的评估值? 3.nets参数可以多选网络,在训练中是将多个网络组合,还是选择其中一个或几个好的网络呢? 4.看样例可以设置LightGBM参数,那需要有开关开启使用LightGBM吗? 5.对于deeptable有哪些好的调参经验参考呢?

Hello, I'm trying to import DeepTables into my Google Colab notebook like so: ``` import deeptables from deeptables.models import make_experiment from deeptables.models.hyper_dt import DTModuleSpace, DnnModule, DTFit ``` However, I am...

Here is my code ``` config = deeptable.ModelConfig(nets=deepnets.DeepFM) dt = deeptable.DeepTable(config=config) model, history = dt.fit(train, y_train,callbacks=None, epochs=200) ``` I don't want to have early stopping, what should I do? This...

在百度平台上使用deeptables GPU版本时,发现GPU利用率比较低 请问如何配置单机多卡?

pip install deeptables[gpu] 安装gpu版本会默认装上cpu版本,即同时存在两个版本, 如何仅Gpu版本安装? 同时存在两个版本在使用时会报错,当删除cpu版本后,gpu即可正常运行。

Do you have a plan to implement Varlen sparse features and different pooling layers?

enhancement