Skip to content

Commit 52edb21

Browse files
committed
rename to deeptab
1 parent a9a2a63 commit 52edb21

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

deeptab/arch_utils/enode_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import torch
22
import torch.nn as nn
33
import torch.nn.functional as F
4-
from deeptabular.arch_utils.layer_utils.sparsemax import sparsemax, sparsemoid
4+
from deeptab.arch_utils.layer_utils.sparsemax import sparsemax, sparsemoid
55
from .data_aware_initialization import ModuleWithInit
66
from .numpy_utils import check_numpy
77
import numpy as np

examples/example_classification.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import pandas as pd
33
from sklearn.model_selection import train_test_split
44

5-
from deeptabular.models import MambularClassifier
5+
from deeptab.models import MambularClassifier
66

77
# Set random seed for reproducibility
88
np.random.seed(0)

examples/example_distributional.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import pandas as pd
44
from sklearn.model_selection import train_test_split
55

6-
from deeptabular.models import MambularLSS
6+
from deeptab.models import MambularLSS
77

88
# Set random seed for reproducibility
99
np.random.seed(0)

examples/example_regression.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import pandas as pd
44
from sklearn.model_selection import train_test_split
55

6-
from deeptabular.models import MambularRegressor
6+
from deeptab.models import MambularRegressor
77

88
# Set random seed for reproducibility
99
np.random.seed(0)

0 commit comments

Comments
 (0)