-
Notifications
You must be signed in to change notification settings - Fork 733
SparkNLP 1256 - Introducing AutoGGUFReranker #14649
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
DevinTDHa
merged 5 commits into
release/612-release-candidate
from
SPARKNLP-1256-AutoGGUFReranker
Aug 19, 2025
Merged
Changes from 4 commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
25d24da
[SPARKNLP-1256] Add AutoGGUFReranker annotator and its tests
prabod 751e11f
add resource downloader
prabod b4be27a
Add example notebook for AutoGGUFReranker model integration in Spark NLP
prabod ef75931
Add documentation for AutoGGUFReranker annotator and update annotator…
prabod dd33ec9
Changes requested
prabod File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,159 @@ | ||
| ````markdown | ||
| {%- capture title -%} | ||
| AutoGGUFReranker | ||
| {%- endcapture -%} | ||
|
|
||
| {%- capture description -%} | ||
| Annotator that uses the llama.cpp library to rerank text documents based on their relevance to | ||
| a given query using GGUF-format reranking models. | ||
|
|
||
| This annotator is specifically designed for text reranking tasks, where multiple documents or | ||
| text passages are ranked according to their relevance to a query. It uses specialized | ||
| reranking models in GGUF format that output relevance scores for each input document. | ||
|
|
||
| The reranker takes a query (set via `setQuery`) and a list of documents, then returns the same | ||
| documents with added metadata containing relevance scores. The documents are processed in | ||
| batches and each receives a `relevance_score` in its metadata indicating how relevant it is to | ||
| the provided query. | ||
|
|
||
| For settable parameters, and their explanations, see [HasLlamaCppInferenceProperties](https://github.com/JohnSnowLabs/spark-nlp/tree/master/src/main/scala/com/johnsnowlabs/nlp/HasLlamaCppInferenceProperties.scala), [HasLlamaCppModelProperties](https://github.com/JohnSnowLabs/spark-nlp/tree/master/src/main/scala/com/johnsnowlabs/nlp/HasLlamaCppModelProperties.scala) and refer to | ||
| the llama.cpp documentation of | ||
| [server.cpp](https://github.com/ggerganov/llama.cpp/tree/7d5e8777ae1d21af99d4f95be10db4870720da91/examples/server) | ||
| for more information. | ||
|
|
||
| If the parameters are not set, the annotator will default to use the parameters provided by | ||
| the model. | ||
|
|
||
| Pretrained models can be loaded with `pretrained` of the companion object: | ||
|
|
||
| ```scala | ||
| val reranker = AutoGGUFReranker.pretrained() | ||
| .setInputCols("document") | ||
| .setOutputCol("reranked_documents") | ||
| .setQuery("A man is eating pasta.") | ||
| ``` | ||
|
|
||
| The default model is `"bge-reranker-v2-m3-Q4_K_M"`, if no name is provided. | ||
|
|
||
| For available pretrained models please see the [Models Hub](https://sparknlp.org/models). | ||
|
|
||
| For extended examples of usage, see the | ||
| [AutoGGUFRerankerTest](https://github.com/JohnSnowLabs/spark-nlp/tree/master/src/test/scala/com/johnsnowlabs/nlp/annotators/seq2seq/AutoGGUFRerankerTest.scala) | ||
| and the | ||
| [example notebook](https://github.com/JohnSnowLabs/spark-nlp/tree/master/examples/python/llama.cpp/llama.cpp_in_Spark_NLP_AutoGGUFReranker.ipynb). | ||
|
|
||
| **Note**: This annotator is designed for reranking tasks and requires setting a query using `setQuery`. | ||
| The query represents the search intent against which documents will be ranked. Each input | ||
| document receives a relevance score in the output metadata. | ||
|
|
||
| To use GPU inference with this annotator, make sure to use the Spark NLP GPU package and set | ||
| the number of GPU layers with the `setNGpuLayers` method. | ||
|
|
||
| When using larger models, we recommend adjusting GPU usage with `setNCtx` and `setNGpuLayers` | ||
| according to your hardware to avoid out-of-memory errors. | ||
| {%- endcapture -%} | ||
|
|
||
| {%- capture input_anno -%} | ||
| DOCUMENT | ||
| {%- endcapture -%} | ||
|
|
||
| {%- capture output_anno -%} | ||
| DOCUMENT | ||
| {%- endcapture -%} | ||
|
|
||
| {%- capture python_example -%} | ||
| >>> import sparknlp | ||
| >>> from sparknlp.base import * | ||
| >>> from sparknlp.annotator import * | ||
| >>> from pyspark.ml import Pipeline | ||
| >>> document = DocumentAssembler() \ | ||
| ... .setInputCol("text") \ | ||
| ... .setOutputCol("document") | ||
| >>> reranker = AutoGGUFReranker.pretrained() \ | ||
| ... .setInputCols(["document"]) \ | ||
| ... .setOutputCol("reranked_documents") \ | ||
| ... .setBatchSize(4) \ | ||
| ... .setQuery("A man is eating pasta.") \ | ||
| ... .setNGpuLayers(99) | ||
| >>> pipeline = Pipeline().setStages([document, reranker]) | ||
| >>> data = spark.createDataFrame([ | ||
| ... ["A man is eating food."], | ||
| ... ["A man is eating a piece of bread."], | ||
| ... ["The girl is carrying a baby."], | ||
| ... ["A man is riding a horse."] | ||
| ... ]).toDF("text") | ||
| >>> result = pipeline.fit(data).transform(data) | ||
| >>> result.select("reranked_documents").show(truncate = False) | ||
| +-------------------------------------------------------------------------------------------+ | ||
| |reranked_documents | | ||
| +-------------------------------------------------------------------------------------------+ | ||
| |[{document, 0, 20, A man is eating food., {query -> A man is eating pasta., relevance_...}]| | ||
| |[{document, 0, 31, A man is eating a piece of bread., {query -> A man is eating pasta.,...}]| | ||
| |[{document, 0, 27, The girl is carrying a baby., {query -> A man is eating pasta., rel...}]| | ||
| |[{document, 0, 22, A man is riding a horse., {query -> A man is eating pasta., relevan...}]| | ||
| +-------------------------------------------------------------------------------------------+ | ||
| {%- endcapture -%} | ||
|
|
||
| {%- capture scala_example -%} | ||
| import com.johnsnowlabs.nlp.base._ | ||
| import com.johnsnowlabs.nlp.annotator._ | ||
| import org.apache.spark.ml.Pipeline | ||
| import spark.implicits._ | ||
|
|
||
| val document = new DocumentAssembler() | ||
| .setInputCol("text") | ||
| .setOutputCol("document") | ||
|
|
||
| val reranker = AutoGGUFReranker | ||
| .pretrained("bge-reranker-v2-m3-Q4_K_M") | ||
| .setInputCols("document") | ||
| .setOutputCol("reranked_documents") | ||
| .setBatchSize(4) | ||
| .setQuery("A man is eating pasta.") | ||
| .setNGpuLayers(99) | ||
|
|
||
| val pipeline = new Pipeline().setStages(Array(document, reranker)) | ||
|
|
||
| val data = Seq( | ||
| "A man is eating food.", | ||
| "A man is eating a piece of bread.", | ||
| "The girl is carrying a baby.", | ||
| "A man is riding a horse." | ||
| ).toDF("text") | ||
| val result = pipeline.fit(data).transform(data) | ||
| result.select("reranked_documents").show(truncate = false) | ||
| +-------------------------------------------------------------------------------------------+ | ||
| |reranked_documents | | ||
| +-------------------------------------------------------------------------------------------+ | ||
| |[{document, 0, 20, A man is eating food., {query -> A man is eating pasta., relevance_...}]| | ||
| |[{document, 0, 31, A man is eating a piece of bread., {query -> A man is eating pasta.,...}]| | ||
| |[{document, 0, 27, The girl is carrying a baby., {query -> A man is eating pasta., rel...}]| | ||
| |[{document, 0, 22, A man is riding a horse., {query -> A man is eating pasta., relevan...}]| | ||
| +-------------------------------------------------------------------------------------------+ | ||
|
|
||
| {%- endcapture -%} | ||
|
|
||
| {%- capture api_link -%} | ||
| [AutoGGUFReranker](/api/com/johnsnowlabs/nlp/annotators/seq2seq/AutoGGUFReranker) | ||
| {%- endcapture -%} | ||
|
|
||
| {%- capture python_api_link -%} | ||
| [AutoGGUFReranker](/api/python/reference/autosummary/sparknlp/annotator/seq2seq/auto_gguf_reranker/index.html) | ||
| {%- endcapture -%} | ||
|
|
||
| {%- capture source_link -%} | ||
| [AutoGGUFReranker](https://github.com/JohnSnowLabs/spark-nlp/tree/master/src/main/scala/com/johnsnowlabs/nlp/annotators/seq2seq/AutoGGUFReranker.scala) | ||
| {%- endcapture -%} | ||
|
|
||
| {% include templates/anno_template.md | ||
| title=title | ||
| description=description | ||
| input_anno=input_anno | ||
| output_anno=output_anno | ||
| python_example=python_example | ||
| scala_example=scala_example | ||
| api_link=api_link | ||
| python_api_link=python_api_link | ||
| source_link=source_link | ||
| %} | ||
| ```` | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
need to make sure this is uploaded