Skip to content

Commit 0961289

Browse files
Fixed issues in imports.
1 parent e8d769c commit 0961289

File tree

3 files changed

+21
-2
lines changed

3 files changed

+21
-2
lines changed

.gitignore

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
*~
2+
*#
3+
*.pyc
4+
*.DS_Store
5+
6+
__pycache__/
7+
*.py[cod]
8+
*$py.class
9+
*.egg-info/
10+
/.coverage
11+
/.coverage.*
12+
/.cache
13+
/.pytest_cache
14+
/.mypy_cache
15+
.idea/*
16+
**/.ipynb_checkpoints/*
17+
/build
18+
/doc/_apidoc/
19+
*.swp
20+

src/synthesizrr/base/algorithm/sentence_transformers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import os
33
from synthesizrr.base.util import optional_dependency, set_param_from_alias
44
from synthesizrr.base.data import FileMetadata
5-
from synthesizrr.base.framework.task import EmbeddingData, Embedder, KeyphraseExtraction, KeyphraseData
5+
from synthesizrr.base.framework.task import EmbeddingData, Embedder
66
from synthesizrr.base.framework.dl.torch import PyTorchBaseModel
77
from synthesizrr.base.constants import Task, Storage, MLType
88
from pydantic import root_validator, conint, confloat

src/synthesizrr/base/constants/__init__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,3 @@
55
from synthesizrr.base.constants.AlgorithmConstants import *
66
from synthesizrr.base.constants.MetricConstants import *
77
from synthesizrr.base.constants.VisualizationConstants import *
8-
from synthesizrr.base.constants.DockerConstants import *

0 commit comments

Comments
 (0)