Skip to content

Commit

Permalink
model tabular fix
Browse files Browse the repository at this point in the history
  • Loading branch information
abhishekkrthakur committed Jun 26, 2024
1 parent 475336c commit 01673f1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/autotrain/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
warnings.filterwarnings("ignore", category=UserWarning, module="huggingface_hub")

logger = Logger().get_logger()
__version__ = "0.8.0.dev0"
__version__ = "0.8.0"


def is_colab():
Expand Down
1 change: 1 addition & 0 deletions src/autotrain/app/params.py
Original file line number Diff line number Diff line change
Expand Up @@ -359,6 +359,7 @@ def _munge_params_img_obj_det(self):

def _munge_params_tabular(self):
_params = self._munge_common_params()
_params["model"] = self.base_model
if not self.using_hub_dataset:
_params["id_column"] = "autotrain_id"
_params["valid_split"] = "validation"
Expand Down

0 comments on commit 01673f1

Please sign in to comment.