Skip to content

Commit

Permalink
Merge branch 'master' into feat/efficient_loading
Browse files Browse the repository at this point in the history
  • Loading branch information
tomaarsen committed Dec 12, 2023
2 parents a00482f + 944cac0 commit 033bf6d
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion sentence_transformers/SentenceTransformer.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,12 @@
import shutil
import stat
from collections import OrderedDict
from typing import List, Dict, Tuple, Iterable, Type, Union, Callable, Optional, Literal
import warnings
from typing import List, Dict, Tuple, Iterable, Type, Union, Callable, Optional
try:
from typing import Literal
except ImportError:
from typing_extensions import Literal
import numpy as np
from numpy import ndarray
import transformers
Expand Down

0 comments on commit 033bf6d

Please sign in to comment.