pytorch_tabular icon indicating copy to clipboard operation
pytorch_tabular copied to clipboard

A standard framework for modelling Deep Learning Models for tabular data

Results 111 pytorch_tabular issues
Sort by recently updated
recently updated
newest added

--------------------------------------------------------------------------- PermissionError Traceback (most recent call last) Input In [18], in () 12 optimizer_config = OptimizerConfig() 14 model_config = CategoryEmbeddingModelConfig( 15 task="classification", 16 layers="1024-512-512", # Number of nodes in each...

Hi! I am trying to use some models from your repository and got the following error: ``` File "C:\ProgramData\Anaconda3\envs\py39\lib\site-packages\torch\nn\modules\module.py", line 1185, in __getattr__ raise AttributeError("'{}' object has no attribute '{}'".format(...

**Is your feature request related to a problem? Please describe.** Some datasets cannot fit into RAM. **Describe the solution you'd like** It would be good to have a feature that...

enhancement
Open for Contribution

I found import error is re-occurring on Colab, seems like the same thing with @sonnguyen129's ```python ! pip install pytorch_tabular[all] # to restart kernel import os; os._exit(00) from pytorch_tabular import...

When I run such as, model.evaulate(test)... Traceback (most recent call last): File "", line 1, in File "/opt/conda/envs/rapids/lib/python3.8/site-packages/pytorch_tabular/tabular_model.py", line 557, in evaluate result = self.trainer.test( File "/opt/conda/envs/rapids/lib/python3.8/site-packages/pytorch_lightning/trainer/trainer.py", line 579, in...

**Describe the bug** Not necessarily a bug. The dependency of pandas == 1.1.5 is a really obsolete version, (and also many other packages) For pandas I read through the source...

good first issue

I wasn't able to find propagation of PyTorch Lightning Trainer accelerator this results in ddp_spawn selection UserWarning: You requested multiple GPUs but did not specify a backend, e.g. `Trainer(accelerator="dp"|"ddp"|"ddp2")`. Setting...

**Describe the bug** When the categorical columns are of dtype Categorical in pandas, it throws this error. `ValueError: Cannot setitem on a Categorical with a new category, set the categories...

bug
Open for Contribution
good first issue

I have no problem running the code [as described here](https://pytorch-tabular.readthedocs.io/en/latest/tutorials/01-Basic_Usage/) but when I format my data the same way, I receive the following error: ``` >>> tabular_model.fit(train=df_train, validation=df_val) Global seed...

When I import ``` from pytorch_tabular import TabularModel ``` catch error ``` 14 import random 15 ---> 16 from pytorch_tabular import TabularModel 17 from pytorch_tabular.models import CategoryEmbeddingModelConfig, NodeConfig, NODEModel 18...