copied
Readme
Files and versions
Updated 2 months ago
code-search
Code & Text Embedding with UniXcoder
author: Jael Gu
Description
A code search operator takes a text string of programming language or natural language as an input and returns an embedding vector in ndarray which captures the input's core semantic elements. This operator is implemented with pre-trained UniXcoder models from Huggingface Transformers.
Code Example
Use the pre-trained model "microsoft/unixcoder-base" to generate text embeddings for given text description "return max value" and code "def max(a,b): if a>b: return a else return b".
Write a pipeline with explicit inputs/outputs name specifications:
from towhee import pipe, ops, DataCollection
p = (
pipe.input('text')
.map('text', 'embedding', ops.code_search.unixcoder())
.output('text', 'embedding')
)
DataCollection(p('find max value')).show()
DataCollection(p('def max(a,b): if a>b: return a else return b')).show()
Factory Constructor
Create the operator via the following factory method:
code_search.unixcoder(model_name="microsoft/unixcoder-base")
Parameters:
model_name: str
The model name in string. The default model name is "microsoft/unixcoder-base".
device: str
The device to run model inference. The default value is None, which enables GPU if cuda is available.
Supported model names:
- microsoft/unixcoder-base
- microsoft/unixcoder-base-nine
Interface
The operator takes a piece of text in string as input. It loads tokenizer and pre-trained model using model name. and then return an embedding in ndarray.
call(txt)
Parameters:
txt: str
The text string in programming language or natural language.
Returns:
numpy.ndarray
The text embedding generated by model, in shape of (dim,).
save_model(format="pytorch", path="default")
Save model to local with specified format.
Parameters:
format: str
The format of saved model, defaults to "pytorch".
format: path
The path where model is saved to. By default, it will save model to the operator directory.
supported_model_names(format=None)
Get a list of all supported model names or supported model names for specified model format.
Parameters:
format: str
The model format such as "pytorch", "torchscript". The default value is None, which will return all supported model names.
More Resources
- The guide to voyage-code-2 | Voyage AI: voyage-code-2: Voyage AI's text embedding model optimized for code retrieval (17% better than alternatives).
- OpenAI text-embedding-3-large | Zilliz: Building GenAI applications with text-embedding-3-large model and Zilliz Cloud / Milvus
- What Is Semantic Search?: Semantic search is a search technique that uses natural language processing (NLP) and machine learning (ML) to understand the context and meaning behind a user's search query.
- Tutorial: Diving into Text Embedding Models | Zilliz Webinar: Register for a free webinar diving into text embedding models in a presentation and tutorial
- Tutorial: Diving into Text Embedding Models | Zilliz Webinar: Register for a free webinar diving into text embedding models in a presentation and tutorial
- Using Voyage AI's embedding models in Zilliz Cloud Pipelines - Zilliz blog: Assess the effectiveness of a RAG system implemented with various embedding models for code-related tasks.
Jael Gu
e95c9f8c8c
| 7 Commits | ||
---|---|---|---|
.gitattributes |
1.1 KiB
|
2 years ago | |
README.md |
3.9 KiB
|
2 months ago | |
__init__.py |
684 B
|
2 years ago | |
requirements.txt |
61 B
|
2 years ago | |
result.png |
14 KiB
|
2 years ago | |
unixcoder.py |
7.0 KiB
|
2 years ago |