This series is made up of 7 models, 3 basic models of different sizes trained on 1 epoch, 3 models trained on 2 epochs making up the Boost series and a Pro model with a non-Roberta architecture.
This sentence transformers model, specifically designed for French taxation, has been fine-tuned on a dataset comprising 43 million tokens, integrating a blend of semi-synthetic and fully synthetic data generated by GPT-4 Turbo and Llama 3.1 70B, which have been further refined through evol-instruction tuning and manual curation.
The model is tailored to meet the specific demands of information retrieval across large-scale tax-related corpora, supporting the implementation of production-ready Retrieval-Augmented Generation (RAG) applications. Its primary purpose is to enhance the efficiency and accuracy of legal processes in the taxation domain, with an emphasis on delivering consistent performance in real-world settings, while also contributing to advancements in legal natural language processing research.
This is a sentence-transformers model finetuned from Alibaba-NLP/gte-multilingual-base. It maps sentences & paragraphs to a 768-dimensional dense vector space and can be used for semantic textual similarity, semantic search, paraphrase mining, text classification, clustering, and more.
- Model Type: Sentence Transformer
- Base model: Alibaba-NLP/gte-multilingual-base
- Maximum Sequence Length: 8192 tokens
- Output Dimensionality: 768 tokens
- Similarity Function: Cosine Similarity
- Developed by: Louis Brulé Naudet
- Funded by: Microsoft for Startups
- Shared by: Louis Brulé Naudet
- Model type: Sentence Transformers
- Language(s) (NLP): FR
- License: Apache 2
- Finetuned from model: Alibaba-NLP/gte-multilingual-base
- Documentation: Sentence Transformers Documentation
- Repository: Sentence Transformers on GitHub
- Hugging Face: Sentence Transformers on Hugging Face
SentenceTransformer(
(0): Transformer({'max_seq_length': 8192, 'do_lower_case': False}) with Transformer model: NewModel
(1): Pooling({'word_embedding_dimension': 768, 'pooling_mode_cls_token': True, 'pooling_mode_mean_tokens': False, 'pooling_mode_max_tokens': False, 'pooling_mode_mean_sqrt_len_tokens': False, 'pooling_mode_weightedmean_tokens': False, 'pooling_mode_lasttoken': False, 'include_prompt': True})
(2): Normalize()
)
First install the Sentence Transformers library:
pip install -U sentence-transformers
Then you can load this model and run inference.
from sentence_transformers import SentenceTransformer
# Download from the đ€ Hub
model = SentenceTransformer("louisbrulenaudet/lemone-gte-embed-max")
# Run inference
sentences = [
"Exposer les modalités de dérogation au secret fiscal autorisant le juge à demander des documents fiscaux nécessaires pour résoudre un litige, en vertu de l'article L. 143 du Livre des Procédures Fiscales.",
"ConformĂ©ment aux dispositions de l'article L. 143 du Livre des ProcĂ©dures Fiscales, le secret fiscal peut ĂȘtre levĂ© dans le cadre d'un litige par dĂ©cision du juge. Cette mesure vise Ă autoriser la prĂ©sentation de documents fiscaux, jugĂ©s utiles par le magistrat pour trancher une affaire. La levĂ©e de ce secret est toutefois soumise Ă une interprĂ©tation stricte, de sorte que seuls les documents rĂ©ellement susceptibles d'Ă©clairer le juge sur l'Ă©tendue du prĂ©judice des individus impliquĂ©s peuvent ĂȘtre divulguĂ©s. Les renseignements qui n'ont de pertinence que pour des questions pĂ©riphĂ©riques de la procĂ©dure ou qui se rapportent uniquement Ă l'application d'un jugement dĂ©jĂ prononcĂ© sont exclus de cette possibilitĂ© de communication.",
"Selon les dispositions du Bulletin officiel des finances publiques-instructions administratives, spĂ©cifiquement le BOI-DJC-SECR-10-20-50, le procureur de la RĂ©publique dĂ©tient le droit, dans le contexte de toute investigation judiciaire, qu'elle relĂšve d'une enquĂȘte de flagrance, prĂ©liminaire ou autre, de solliciter des renseignements ou documents essentiels Ă l'enquĂȘte auprĂšs de l'administration fiscale. Cette sollicitation peut ĂȘtre adressĂ©e directement ou via un officier de police judiciaire agissant sur une rĂ©quisition du procureur. ConformĂ©ment Ă l'article L.141 A du Livre des procĂ©dures fiscales, le secret fiscal ne constitue pas un frein lĂ©gal Ă la transmission des informations ou documents exigĂ©s par le procureur.",
]
embeddings = model.encode(sentences)
print(embeddings.shape)
# [3, 768]
# Get the similarity scores for the embeddings
similarities = model.similarity(embeddings, embeddings)
print(similarities.shape)
# [3, 3]
- Dataset:
Lemone
- Evaluated with
InformationRetrievalEvaluator
Metric | Value |
---|---|
cosine_accuracy@1 | 0.9737 |
cosine_accuracy@3 | 0.9917 |
cosine_accuracy@5 | 0.9936 |
cosine_accuracy@10 | 0.9968 |
cosine_precision@1 | 0.9737 |
cosine_precision@3 | 0.3306 |
cosine_precision@5 | 0.1987 |
cosine_precision@10 | 0.0997 |
cosine_recall@1 | 0.9737 |
cosine_recall@3 | 0.9917 |
cosine_recall@5 | 0.9936 |
cosine_recall@10 | 0.9968 |
cosine_ndcg@10 | 0.9865 |
cosine_mrr@10 | 0.9831 |
cosine_map@100 | 0.9832 |
dot_accuracy@1 | 0.9737 |
dot_accuracy@3 | 0.9917 |
dot_accuracy@5 | 0.9936 |
dot_accuracy@10 | 0.9968 |
dot_precision@1 | 0.9737 |
dot_precision@3 | 0.3306 |
dot_precision@5 | 0.1987 |
dot_precision@10 | 0.0997 |
dot_recall@1 | 0.9737 |
dot_recall@3 | 0.9917 |
dot_recall@5 | 0.9936 |
dot_recall@10 | 0.9968 |
dot_ndcg@10 | 0.9865 |
dot_mrr@10 | 0.9831 |
dot_map@100 | 0.9832 |
- Size: 303,863 training samples
- Columns:
query
,positive
, andnegative
- Approximate statistics based on the first 1000 samples:
query positive negative type string string string details - min: 27 tokens
- mean: 51.44 tokens
- max: 137 tokens
- min: 39 tokens
- mean: 197.8 tokens
- max: 1607 tokens
- min: 48 tokens
- mean: 224.41 tokens
- max: 2735 tokens
- Loss:
CachedGISTEmbedLoss
with these parameters:
eval_strategy
: stepsper_device_train_batch_size
: 128learning_rate
: 2e-05num_train_epochs
: 1warmup_ratio
: 0.1fp16
: Truebatch_sampler
: no_duplicates
Click to expand
overwrite_output_dir
: Falsedo_predict
: Falseeval_strategy
: stepsprediction_loss_only
: Trueper_device_train_batch_size
: 128per_device_eval_batch_size
: 8per_gpu_train_batch_size
: Noneper_gpu_eval_batch_size
: Nonegradient_accumulation_steps
: 1eval_accumulation_steps
: Nonetorch_empty_cache_steps
: Nonelearning_rate
: 2e-05weight_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
: 42data_seed
: Nonejit_mode_eval
: Falseuse_ipex
: Falsebf16
: Falsefp16
: Truefp16_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
: 0dataloader_prefetch_factor
: Nonepast_index
: -1disable_tqdm
: Falseremove_unused_columns
: Truelabel_names
: Noneload_best_model_at_end
: Falseignore_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
: Falsehub_always_push
: Falsegradient_checkpointing
: Falsegradient_checkpointing_kwargs
: Noneinclude_inputs_for_metrics
: Falseeval_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
: Falseeval_use_gather_object
: Falsebatch_sampler
: no_duplicatesmulti_dataset_batch_sampler
: proportional
Carbon emissions were measured using CodeCarbon.
- Energy Consumed: 5.517 kWh
- Carbon Emitted: 2.036 kg of CO2
- Hours Used: 9.954 hours
- On Cloud: No
- GPU Model: 1 x NVIDIA H100 NVL
- CPU Model: AMD EPYC 9V84 96-Core Processor
- RAM Size: 314.68 GB
- Python: 3.10.12
- Sentence Transformers: 3.1.1
- Transformers: 4.44.2
- PyTorch: 2.3.0+cu121
- Accelerate: 0.33.0
- Datasets: 2.21.0
- Tokenizers: 0.19.1
@inproceedings{reimers-2019-sentence-bert,
title = "Sentence-BERT: Sentence Embeddings using Siamese BERT-Networks",
author = "Reimers, Nils and Gurevych, Iryna",
booktitle = "Proceedings of the 2019 Conference on Empirical Methods in Natural Language Processing",
month = "11",
year = "2019",
publisher = "Association for Computational Linguistics",
url = "https://arxiv.org/abs/1908.10084",
}
If you use this code in your research, please use the following BibTeX entry.
@misc{louisbrulenaudet2024,
author = {Louis Brulé Naudet},
title = {Lemone-Embed: A Series of Fine-Tuned Embedding Models for French Taxation},
year = {2024}
howpublished = {\url{https://huggingface.co/datasets/louisbrulenaudet/lemone-embed-pro}},
}
If you have any feedback, please reach out at [email protected].