Skip to content

Commit 262bc49

Browse files
authored
Merge pull request #282 from OpenTabular/feature/rename
Package renamed to DeepTabular
2 parents 6fc6d1d + 8e8561a commit 262bc49

File tree

135 files changed

+571
-398
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

135 files changed

+571
-398
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 1 addition & 1 deletion

.github/workflows/pr-tests.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,13 @@ jobs:
3636
- name: Install Dependencies
3737
run: |
3838
python -m pip install --upgrade pip
39-
poetry install --with dev
39+
poetry install
40+
pip install pytest
41+
42+
- name: Install Package Locally
43+
run: |
44+
poetry build
45+
pip install dist/*.whl # Install the built package to fix "No module named 'deeptabular'"
4046
4147
- name: Run Unit Tests
4248
env:

README.md

Lines changed: 34 additions & 34 deletions
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@
1717

1818
# The following line *must* be the last in the module, exactly as formatted:
1919

20-
__version__ = "1.5.0"
20+
__version__ = "1.6.0"
2121

File renamed without changes.
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 mambular.arch_utils.layer_utils.sparsemax import sparsemax, sparsemoid
4+
from deeptabular.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

0 commit comments

Comments
 (0)