Model Summary:
Granite-Embedding-30m-English is a 30M parameter dense bi-encoder embedding model from the Granite Embeddings suite that can be used to generate high quality text embeddings. This model produces embedding vectors of size 384 and is trained using a combination of open source relevance-pair datasets with permissive, enterprise-friendly license, and IBM collected and generated datasets. While maintaining competitive scores on academic benchmarks such as BEIR, this model also performs well on many enterprise use cases. This model is developed using retrieval oriented pre-training, contrastive fine-tuning, knowledge distillation and model merging for improved performance.
Granite-embedding-30m-r1.1 was specifically designed to support multi-turn information retrieval and is designed to handle contextual document retrieval in multi-turn conversational information retrieval. Granite-embedding-30m-r1.1 was trained on data tailored for multi-turn conversational information retrieval and uses multi-teacher distillation over granite-embedding-30m-english (https://huggingface.co/ibm-granite/granite-embedding-30m-english)
Intended use:
The model is designed to produce fixed length vector representations for a given text, which can be used for text similarity, retrieval, and search applications.
Usage with Sentence Transformers:
The model is compatible with SentenceTransformer library and is very easy to use:
First, install the sentence transformers library
pip install sentence_transformers
The model can then be used to encode pairs of text and find the similarity between their representations.
Granite-Embedding-30m-English
python
1from sentence_transformers import SentenceTransformer, util
23model_path ="ibm-granite/granite-embedding-30m-english"4# Load the Sentence Transformer model5model = SentenceTransformer(model_path)67input_queries =[8' Who made the song My achy breaky heart? ',9'summit define'10]1112input_passages =[13"Achy Breaky Heart is a country song written by Don Von Tress. Originally titled Don't Tell My Heart and performed by The Marcy Brothers in 1991. ",14"Definition of summit for English Language Learners. : 1 the highest point of a mountain : the top of a mountain. : 2 the highest level. : 3 a meeting or series of meetings between the leaders of two or more governments."15]1617# encode queries and passages18query_embeddings = model.encode(input_queries)19passage_embeddings = model.encode(input_passages)2021# calculate cosine similarity22print(util.cos_sim(query_embeddings, passage_embeddings))
Granite-Embedding-30m-r1.1
Specifically to encode with granite-embedding-30m-r1.1 the entire conversation, ending with the last user query, should be provided as the input, with the conversation instances arranged in reverse chronological order: first the last user query, then the preceding agent response, followed by the previous user query. Example,
Conversation in input query format: <last_user_query>[SEP]agent: <agent_response_3>||user:<user_query_3>||agent: <agent_response_2>||user:<user_query_2>||agent: <agent_response_1>||user:<user_query_1>
python
1from sentence_transformers import SentenceTransformer, util
23model_path ="ibm-granite/granite-embedding-30m-english"4# Load the Sentence Transformer model5model = SentenceTransformer(model_path, revision="granite-embedding-30m-r1.1")67input_queries =[8"Which team has won the most Super Bowls?[SEP]agent: Six teams from each conference (AFC and NFC), for a total of 12 team playoff system.||user: How many teams are in the NFL playoffs?||agent: There are 32 teams in the National Football League (NFL).||user: How many teams are in the NFL?",910"How many teams are in the NFL playoffs?[SEP]agent: There are 32 teams in the National Football League (NFL).||user: How many teams are in the NFL?||agent: The Chicago Cardinals became the St. Louis Cardinals in 1960 and eventually moved and became the Arizona Cardinals. The Chicago Cardinals ( now the Arizona Cardinals ) were a founding member of the NFL.||user: Are the Arizona Cardinals and the Chicago Cardinals the same team?||agent: The Arizona Cardinals do play outside the United States. They had a game in London, England, on October 22, 2017, against the Los Angeles Rams at Twickenham Stadium and in 2005 they played in Mexico.||user: Do the Arizona Cardinals play outside the US?"11]1213input_passages =[14"Super Bowl\nThe Pittsburgh Steelers have won six Super Bowls , the most of any team ; the Dallas Cowboys , New England Patriots and San Francisco 49ers have five victories each , while the Green Bay Packers and New York Giants have four Super Bowl championships . Fourteen other NFL franchises have won at least one Super Bowl . Eight teams have appeared in Super Bowl games without a win . The Minnesota Vikings were the first team to have appeared a record four times without a win . The Buffalo Bills played in a record four Super Bowls in a row and lost every one . Four teams ( the Cleveland Browns , Detroit Lions , Jacksonville Jaguars , and Houston Texans ) have never appeared in a Super Bowl . The Browns and Lions both won NFL Championships prior to the creation of the Super Bowl , while the Jaguars ( 1995 ) and Texans ( 2002 ) are both recent NFL expansion teams . ( Detroit , Houston , and Jacksonville , however , have hosted a Super Bowl , leaving the Browns the only team to date who has neither played in nor whose city has hosted the game . ) The Minnesota Vikings won the last NFL Championship before the merger but lost to the AFL champion Kansas City Chiefs in Super Bowl IV.",1516"NFL playoffs \n The 32 - team National Football League is divided into two conferences , American Football Conference ( AFC ) and National Football Conference ( NFC ) , each with 16 teams . Since 2002 , each conference has been further divided into four divisions of four teams each . The tournament brackets are made up of six teams from each of the league 's two conferences , following the end of the regular season . Qualification into the playoffs works as follows : "17]1819# encode queries and passages20query_embeddings = model.encode(input_queries)21passage_embeddings = model.encode(input_passages)2223# calculate cosine similarity24print(util.cos_sim(query_embeddings, passage_embeddings))
Usage with Huggingface Transformers: This is a simple example of how to use the Granite-Embedding-30m-English model with the Transformers library and PyTorch.
First, install the required libraries
pip install transformers torch
The model can then be used to encode pairs of text
Granite-Embedding-30m-English
python
1import torch
2from transformers import AutoModel, AutoTokenizer
34model_path ="ibm-granite/granite-embedding-30m-english"56# Load the model and tokenizer7model = AutoModel.from_pretrained(model_path)8tokenizer = AutoTokenizer.from_pretrained(model_path)9model.eval()1011input_queries =[12' Who made the song My achy breaky heart? ',13'summit define'14]1516# tokenize inputs17tokenized_queries = tokenizer(input_queries, padding=True, truncation=True, return_tensors='pt')1819# encode queries20with torch.no_grad():21# Queries22 model_output = model(**tokenized_queries)23# Perform pooling. granite-embedding-30m-english uses CLS Pooling24 query_embeddings = model_output[0][:,0]2526# normalize the embeddings27query_embeddings = torch.nn.functional.normalize(query_embeddings, dim=1)28
Granite-Embedding-30m-r1.1
python
1import torch
2from transformers import AutoModel, AutoTokenizer
34model_path ="ibm-granite/granite-embedding-30m-english"56# Load the model and tokenizer7model = AutoModel.from_pretrained(model_path, revision="granite-embedding-30m-r1.1")8tokenizer = AutoTokenizer.from_pretrained(model_path)9model.eval()1011input_queries =[12"Which team has won the most Super Bowls?[SEP]agent: Six teams from each conference (AFC and NFC), for a total of 12 team playoff system.||user: How many teams are in the NFL playoffs?||agent: There are 32 teams in the National Football League (NFL).||user: How many teams are in the NFL?",1314"How many teams are in the NFL playoffs?[SEP]agent: There are 32 teams in the National Football League (NFL).||user: How many teams are in the NFL?||agent: The Chicago Cardinals became the St. Louis Cardinals in 1960 and eventually moved and became the Arizona Cardinals. The Chicago Cardinals ( now the Arizona Cardinals ) were a founding member of the NFL.||user: Are the Arizona Cardinals and the Chicago Cardinals the same team?||agent: The Arizona Cardinals do play outside the United States. They had a game in London, England, on October 22, 2017, against the Los Angeles Rams at Twickenham Stadium and in 2005 they played in Mexico.||user: Do the Arizona Cardinals play outside the US?"15]1617# tokenize inputs18tokenized_queries = tokenizer(input_queries, padding=True, truncation=True, return_tensors='pt')1920# encode queries21with torch.no_grad():22# Queries23 model_output = model(**tokenized_queries)24# Perform pooling. granite-embedding-30m-english-multiturn uses CLS Pooling25 query_embeddings = model_output[0][:,0]2627# normalize the embeddings28query_embeddings = torch.nn.functional.normalize(query_embeddings, dim=1)29
Evaluation:
Granite-Embedding-30M-English model is twice as fast as other models with similar embedding dimensions, while maintaining competitive performance. The performance of the Granite-Embedding-30M-English model on MTEB Retrieval (i.e., BEIR) and code retrieval (CoIR) benchmarks is reported below.
Model
Paramters (M)
Embedding Dimension
MTEB Retrieval (15)
CoIR (10)
granite-embedding-30m-english
30
384
49.1
47.0
granite-embedding-30m-r1.1 revision maintains the fast speed of granite-embedding-30m-english while demontratring strong performance on multi-turn information retrieval benchmarks. The performance of the granite-embedding-30M-r1.1 model on MTEB Retrieval (i.e., BEIR) and multi-turn information retrieval (MTRAG(https://github.com/IBM/mt-rag-benchmark), Multidoc2dial(https://github.com/IBM/multidoc2dial)) datasets is reported below.
Model
Parameters (M)
Embedding Dimension
MTEB Retrieval (15)
MT-RAG
Mdoc2dial
granite-embedding-30m-english
30
384
49.1
49.16
85.42
granite-embedding-30m-english-r1.1
30
384
48.9
52.33
85.78
bge-small-en-v1.5
33
512
53.86
38.26
83.71
e5-small-v2
33
384
48.46
28.72
75.7
Model Architecture:
granite-embedding-30m-English is based on an encoder-only RoBERTa like transformer architecture, trained internally at IBM Research. granite-embedding-30m-r1.1 shares the same architecture as granite-embedding-30m-English
Model
granite-embedding-30m-english
granite-embedding-125m-english
granite-embedding-107m-multilingual
granite-embedding-278m-multilingual
Embedding size
384
768
384
768
Number of layers
6
12
6
12
Number of attention heads
12
12
12
12
Intermediate size
1536
3072
1536
3072
Activation Function
GeLU
GeLU
GeLU
GeLU
Vocabulary Size
50265
50265
250002
250002
Max. Sequence Length
512
512
512
512
# Parameters
30M
125M
107M
278M
Training Data:
Overall, the training data consists of four key sources: (1) unsupervised title-body paired data scraped from the web, (2) publicly available paired with permissive, enterprise-friendly license, (3) IBM-internal paired data targeting specific technical domains, and (4) IBM-generated synthetic data. The data is listed below:
Notably, we do not use the popular MS-MARCO retrieval dataset in our training corpus due to its non-commercial license, while other open-source models train on this dataset due to its high quality.
Infrastructure:
We train Granite Embedding Models using IBM's computing cluster, Cognitive Compute Cluster, which is outfitted with NVIDIA A100 80gb GPUs. This cluster provides a scalable and efficient infrastructure for training our models over multiple GPUs.
Ethical Considerations and Limitations:
The data used to train the base language model was filtered to remove text containing hate, abuse, and profanity. Granite-embedding-30m-english and Granite-embedding-30m-r1.1 are trained only for English texts, and has a context length of 512 tokens (longer texts will be truncated to this size).