mirror of
https://github.com/tencentmusic/supersonic.git
synced 2025-12-11 20:25:12 +00:00
12 lines
370 B
Python
12 lines
370 B
Python
# -*- coding:utf-8 -*-
|
|
import os
|
|
import sys
|
|
|
|
sys.path.append(os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))))
|
|
sys.path.append(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
|
|
sys.path.append(os.path.dirname(os.path.abspath(__file__)))
|
|
|
|
from utils.text2vec import Text2VecEmbeddingFunction
|
|
|
|
emb_func = Text2VecEmbeddingFunction()
|