Views
No views yet
ColBERT(
(0): Transformer({'max_seq_length': 31, 'do_lower_case': False}) with Transformer model: BertModel
(1): Dense({'in_features': 384, 'out_features': 96, 'bias': False, 'activation_function': 'torch.nn.modules.linear.Identity'})
)pip install -U pylate1from pylate import indexes, models, retrieve
2
3# Step 1: Load the ColBERT model
4model = models.ColBERT(
5 model_name_or_path=ayushexel/colbert-answerai-colbert-small-v1-1-neg-1-epoch-gooaq-1995000,
6)
7
8# Step 2: Initialize the Voyager index
9index = indexes.Voyager(
10 index_folder="pylate-index",
11 index_name="index",
12 override=True, # This overwrites the existing index if any
13)
14
15# Step 3: Encode the documents
16documents_ids = ["1", "2", "3"]
17documents = ["document 1 text", "document 2 text", "document 3 text"]
18
19documents_embeddings = model.encode(
20 documents,
21 batch_size=32,
22 is_query=False, # Ensure that it is set to False to indicate that these are documents, not queries
23 show_progress_bar=True,
24)
25
26# Step 4: Add document embeddings to the index by providing embeddings and corresponding ids
27index.add_documents(
28 documents_ids=documents_ids,
29 documents_embeddings=documents_embeddings,
30)1# To load an index, simply instantiate it with the correct folder/name and without overriding it
2index = indexes.Voyager(
3 index_folder="pylate-index",
4 index_name="index",
5)1# Step 1: Initialize the ColBERT retriever
2retriever = retrieve.ColBERT(index=index)
3
4# Step 2: Encode the queries
5queries_embeddings = model.encode(
6 ["query for document 3", "query for document 1"],
7 batch_size=32,
8 is_query=True, # # Ensure that it is set to False to indicate that these are queries
9 show_progress_bar=True,
10)
11
12# Step 3: Retrieve top-k documents
13scores = retriever.retrieve(
14 queries_embeddings=queries_embeddings,
15 k=10, # Retrieve the top 10 matches for each query
16)1from pylate import rank, models
2
3queries = [
4 "query A",
5 "query B",
6]
7
8documents = [
9 ["document A", "document B"],
10 ["document 1", "document C", "document B"],
11]
12
13documents_ids = [
14 [1, 2],
15 [1, 3, 2],
16]
17
18model = models.ColBERT(
19 model_name_or_path=ayushexel/colbert-answerai-colbert-small-v1-1-neg-1-epoch-gooaq-1995000,
20)
21
22queries_embeddings = model.encode(
23 queries,
24 is_query=True,
25)
26
27documents_embeddings = model.encode(
28 documents,
29 is_query=False,
30)
31
32reranked_documents = rank.rerank(
33 documents_ids=documents_ids,
34 queries_embeddings=queries_embeddings,
35 documents_embeddings=documents_embeddings,
36)pylate.evaluation.colbert_triplet.ColBERTTripletEvaluator| Metric | Value |
|---|---|
| accuracy | 0.5194 |
question, answer, and negative| question | answer | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
| question | answer | negative |
|---|---|---|
what are girl names that start with g? | ['Grace. Grace is one of those classic girl names that never seems to go out of style. ... ', 'Gabriella. Hebrew Origin. ... ', 'Gabrielle. French Origin. ... ', 'Genevieve. French: White wave. ... ', 'Giselle. French: Pledge. ... ', 'Gloria. Latin: Glory, renown, and respect. ... ', 'Gina. English: Abbreviation of names ending in "gina" ... ', 'Gabriela.'] | |
is wheat healthier than white bread? | Whole wheat is processed to include all three nutritious parts, but white flour uses only the endosperm. When put head-to-head with whole wheat bread, white is a nutritional lightweight. Whole wheat is much higher in fiber, vitamins B6 and E, magnesium, zinc, folic acid and chromium. | Very Strong White. Made from a blend of premium wheat, Allinson Very Strong White Bread Flour has a higher protein content and gluten strength than our strong flour. ... You can use this flour whenever your recipes call for strong white bread flour and it will produce a higher rise and a better texture. |
are the mtv vmas live? | The annual VMA ceremony occurs before the end of summer and held either in late August or mid-September, and broadcast live on MTV, along with a "roadblock" simulcast across MTV's sister networks since 2014, which is utilized to maximize the ceremony's ratings. | TIL MTV and VH1 were always a part of the same company and are in fact SISTER CHANNELS. Viacom is huge, they also own Comedy Central. Viacom bought MTV, VH1, BET, Nickelodeon (MTV Networks) and Showtime from Warner in 1985. |
pylate.losses.contrastive.Contrastivequestion, answer, and negative_1| question | answer | negative_1 | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
| question | answer | negative_1 |
|---|---|---|
what season and episode does jon snow come back to life? | This is the mother of all Game of Thrones spoilers, so if you haven't watched season 6 episode 2 yet, please click away now. Jon Snow is alive. | Then, of course, there is Jon Snow's resurrection in Episode 2 of Season 6, an event that changed everything about Thrones. |
do the rich get richer? | It's true, the rich do get richer—here's why... ... The growing wealth of the rich, and the relative stagnation of the middle class, are due in large part to diverging incomes, but investments also play an increasingly important role. And it's not just that the wealthy have more investments. | It's true, the rich do get richer—here's why... ... The growing wealth of the rich, and the relative stagnation of the middle class, are due in large part to diverging incomes, but investments also play an increasingly important role. And it's not just that the wealthy have more investments. |
how long can you eat leftover lamb? | Store it safely You can safely store cooked lamb for up to three days in the fridge, or for up to two months in the freezer. Make sure it's fully defrosted before using and, if it's been frozen once, don't re-freeze. | Lamb. ... The meat of sheep 6 to 10 weeks old is usually sold as baby lamb, and spring lamb is from sheep of five to six months. |
pylate.losses.contrastive.Contrastiveeval_strategy: stepsper_device_train_batch_size: 128per_device_eval_batch_size: 128learning_rate: 3e-06num_train_epochs: 1warmup_ratio: 0.1seed: 12bf16: Truedataloader_num_workers: 12load_best_model_at_end: Trueoverwrite_output_dir: Falsedo_predict: Falseeval_strategy: stepsprediction_loss_only: Trueper_device_train_batch_size: 128per_device_eval_batch_size: 128per_gpu_train_batch_size: Noneper_gpu_eval_batch_size: Nonegradient_accumulation_steps: 1eval_accumulation_steps: Nonetorch_empty_cache_steps: Nonelearning_rate: 3e-06weight_decay: 0.0adam_beta1: 0.9adam_beta2: 0.999adam_epsilon: 1e-08max_grad_norm: 1.0num_train_epochs: 1max_steps: -1lr_scheduler_type: linearlr_scheduler_kwargs: {}warmup_ratio: 0.1warmup_steps: 0log_level: passivelog_level_replica: warninglog_on_each_node: Truelogging_nan_inf_filter: Truesave_safetensors: Truesave_on_each_node: Falsesave_only_model: Falserestore_callback_states_from_checkpoint: Falseno_cuda: Falseuse_cpu: Falseuse_mps_device: Falseseed: 12data_seed: Nonejit_mode_eval: Falseuse_ipex: Falsebf16: Truefp16: Falsefp16_opt_level: O1half_precision_backend: autobf16_full_eval: Falsefp16_full_eval: Falsetf32: Nonelocal_rank: 0ddp_backend: Nonetpu_num_cores: Nonetpu_metrics_debug: Falsedebug: []dataloader_drop_last: Falsedataloader_num_workers: 12dataloader_prefetch_factor: Nonepast_index: -1disable_tqdm: Falseremove_unused_columns: Truelabel_names: Noneload_best_model_at_end: Trueignore_data_skip: Falsefsdp: []fsdp_min_num_params: 0fsdp_config: {'min_num_params': 0, 'xla': False, 'xla_fsdp_v2': False, 'xla_fsdp_grad_ckpt': False}fsdp_transformer_layer_cls_to_wrap: Noneaccelerator_config: {'split_batches': False, 'dispatch_batches': None, 'even_batches': True, 'use_seedable_sampler': True, 'non_blocking': False, 'gradient_accumulation_kwargs': None}deepspeed: Nonelabel_smoothing_factor: 0.0optim: adamw_torchoptim_args: Noneadafactor: Falsegroup_by_length: Falselength_column_name: lengthddp_find_unused_parameters: Noneddp_bucket_cap_mb: Noneddp_broadcast_buffers: Falsedataloader_pin_memory: Truedataloader_persistent_workers: Falseskip_memory_metrics: Trueuse_legacy_prediction_loop: Falsepush_to_hub: Falseresume_from_checkpoint: Nonehub_model_id: Nonehub_strategy: every_savehub_private_repo: Nonehub_always_push: Falsegradient_checkpointing: Falsegradient_checkpointing_kwargs: Noneinclude_inputs_for_metrics: Falseinclude_for_metrics: []eval_do_concat_batches: Truefp16_backend: autopush_to_hub_model_id: Nonepush_to_hub_organization: Nonemp_parameters:auto_find_batch_size: Falsefull_determinism: Falsetorchdynamo: Noneray_scope: lastddp_timeout: 1800torch_compile: Falsetorch_compile_backend: Nonetorch_compile_mode: Nonedispatch_batches: Nonesplit_batches: Noneinclude_tokens_per_second: Falseinclude_num_input_tokens_seen: Falseneftune_noise_alpha: Noneoptim_target_modules: Nonebatch_eval_metrics: Falseeval_on_start: Falseuse_liger_kernel: Falseeval_use_gather_object: Falseaverage_tokens_across_devices: Falseprompts: Nonebatch_sampler: batch_samplermulti_dataset_batch_sampler: proportional| Epoch | Step | Training Loss | accuracy |
|---|---|---|---|
| 0 | 0 | - | 0.5194 |
| 0.0001 | 1 | 3.319 | - |
| 0.0135 | 200 | 2.6741 | - |
| 0.0270 | 400 | 0.6117 | - |
| 0.0405 | 600 | 0.3176 | - |
| 0.0541 | 800 | 0.2894 | - |
| 0.0676 | 1000 | 0.2731 | - |
| 0.0811 | 1200 | 0.2621 | - |
| 0.0946 | 1400 | 0.2539 | - |
| 0.1081 | 1600 | 0.2399 | - |
| 0.1216 | 1800 | 0.238 | - |
| 0.1352 | 2000 | 0.2309 | - |
| 0.1487 | 2200 | 0.2345 | - |
| 0.1622 | 2400 | 0.2192 | - |
| 0.1757 | 2600 | 0.2155 | - |
| 0.1892 | 2800 | 0.2218 | - |
| 0.2027 | 3000 | 0.2214 | - |
| 0.2163 | 3200 | 0.2136 | - |
| 0.2298 | 3400 | 0.2136 | - |
| 0.2433 | 3600 | 0.2132 | - |
| 0.2568 | 3800 | 0.2104 | - |
| 0.2703 | 4000 | 0.212 | - |
| 0.2838 | 4200 | 0.2156 | - |
| 0.2974 | 4400 | 0.2034 | - |
| 0.3109 | 4600 | 0.2083 | - |
| 0.3244 | 4800 | 0.2082 | - |
| 0.3379 | 5000 | 0.2126 | - |
| 0.3514 | 5200 | 0.2098 | - |
| 0.3649 | 5400 | 0.2055 | - |
| 0.3785 | 5600 | 0.2024 | - |
| 0.3920 | 5800 | 0.1974 | - |
| 0.4055 | 6000 | 0.2005 | - |
| 0.4190 | 6200 | 0.205 | - |
| 0.4325 | 6400 | 0.2002 | - |
| 0.4460 | 6600 | 0.1989 | - |
| 0.4596 | 6800 | 0.1997 | - |
| 0.4731 | 7000 | 0.1954 | - |
| 0.4866 | 7200 | 0.192 | - |
| 0.5001 | 7400 | 0.2003 | - |
| 0.5136 | 7600 | 0.1942 | - |
| 0.5271 | 7800 | 0.1998 | - |
| 0.5407 | 8000 | 0.1985 | - |
| 0.5542 | 8200 | 0.1934 | - |
| 0.5677 | 8400 | 0.1951 | - |
| 0.5812 | 8600 | 0.1946 | - |
| 0.5947 | 8800 | 0.1919 | - |
| 0.6082 | 9000 | 0.2025 | - |
| 0.6217 | 9200 | 0.1924 | - |
| 0.6353 | 9400 | 0.1964 | - |
| 0.6488 | 9600 | 0.192 | - |
| 0.6623 | 9800 | 0.1884 | - |
| 0.6758 | 10000 | 0.1921 | - |
| 0.6893 | 10200 | 0.1922 | - |
| 0.7028 | 10400 | 0.1973 | - |
| 0.7164 | 10600 | 0.1911 | - |
| 0.7299 | 10800 | 0.191 | - |
| 0.7434 | 11000 | 0.1907 | - |
| 0.7569 | 11200 | 0.1866 | - |
| 0.7704 | 11400 | 0.1905 | - |
| 0.7839 | 11600 | 0.1936 | - |
| 0.7975 | 11800 | 0.193 | - |
| 0.8110 | 12000 | 0.1869 | - |
| 0.8245 | 12200 | 0.192 | - |
| 0.8380 | 12400 | 0.1889 | - |
| 0.8515 | 12600 | 0.1923 | - |
| 0.8650 | 12800 | 0.1902 | - |
| 0.8786 | 13000 | 0.1879 | - |
| 0.8921 | 13200 | 0.1918 | - |
| 0.9056 | 13400 | 0.1938 | - |
| 0.9191 | 13600 | 0.1927 | - |
| 0.9326 | 13800 | 0.1926 | - |
| 0.9461 | 14000 | 0.1939 | - |
| 0.9597 | 14200 | 0.1909 | - |
| 0.9732 | 14400 | 0.1878 | - |
| 0.9867 | 14600 | 0.1919 | - |
1@inproceedings{reimers-2019-sentence-bert,
2 title = "Sentence-BERT: Sentence Embeddings using Siamese BERT-Networks",
3 author = "Reimers, Nils and Gurevych, Iryna",
4 booktitle = "Proceedings of the 2019 Conference on Empirical Methods in Natural Language Processing",
5 month = "11",
6 year = "2019",
7 publisher = "Association for Computational Linguistics",
8 url = "https://arxiv.org/abs/1908.10084"
9}1@misc{PyLate,
2title={PyLate: Flexible Training and Retrieval for Late Interaction Models},
3author={Chaffin, Antoine and Sourty, Raphaël},
4url={https://github.com/lightonai/pylate},
5year={2024}
6}