Instructions to use BAAI/bge-large-zh with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use BAAI/bge-large-zh with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("feature-extraction", model="BAAI/bge-large-zh")# Load model directly from transformers import AutoTokenizer, AutoModel tokenizer = AutoTokenizer.from_pretrained("BAAI/bge-large-zh") model = AutoModel.from_pretrained("BAAI/bge-large-zh") - Inference
- Notebooks
- Google Colab
- Kaggle
有中文文档分割模型吗?
#2
by yueyexingkong - opened
rt
当前模型是分割后向量化检索,能用来分割文档吗?
您好,目前没有专用于文档分割的模型,您可以参考一些开源库如langchain的基于规则的分割方案。