Skip to content

Commit

Permalink
fix: s2s embedding bug (#858)
Browse files Browse the repository at this point in the history
  • Loading branch information
bogdan-galileo authored Jun 3, 2024
1 parent fbe15bc commit 15b7a8d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dataquality/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
dataquality.get_insights()
"""

__version__ = "2.1.1"
__version__ = "2.1.2"

import sys
from typing import Any, List, Optional
Expand Down
3 changes: 2 additions & 1 deletion dataquality/loggers/data_logger/base_data_logger.py
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,8 @@ def upload(
location = f"{self.LOG_FILE_DIR}/{proj_run}"

if cuml_available():
if self.support_embs:
# Only run UMAP if we have embeddings and we won't remove them later
if self.support_embs and not self.logger_config.remove_embs:
print("Applying UMAP to embeddings")
apply_umap_to_embs(location, last_epoch)

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"

[tool.poetry]
name = "dataquality"
version = "2.1.1"
version = "2.1.2"
description = ""
authors = ["Galileo Technologies, Inc. <[email protected]>"]
readme = "README.md"
Expand Down

0 comments on commit 15b7a8d

Please sign in to comment.