We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7a48a2b commit 25b0137Copy full SHA for 25b0137
src/pytorch_tabular/models/base_model.py
@@ -123,13 +123,13 @@ def __init__(
123
)
124
if not WANDB_INSTALLED:
125
self.do_log_logits = False
126
- raise warnings.warn(
+ warnings.warn(
127
"Wandb is not installed. Please install wandb to log logits. "
128
"You can install wandb using pip install wandb or install PyTorch Tabular using pip install pytorch-tabular[all]"
129
130
if not PLOTLY_INSTALLED:
131
132
133
"Plotly is not installed. Please install plotly to log logits. "
134
"You can install plotly using pip install plotly or install PyTorch Tabular using pip install pytorch-tabular[all]"
135
0 commit comments