Instructions to use gefgu/modernbert-profile-coherence-aligner with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- sentence-transformers
How to use gefgu/modernbert-profile-coherence-aligner with sentence-transformers:
from sentence_transformers import CrossEncoder model = CrossEncoder("gefgu/modernbert-profile-coherence-aligner") query = "Which planet is known as the Red Planet?" passages = [ "Venus is often called Earth's twin because of its similar size and proximity.", "Mars, known for its reddish appearance, is often referred to as the Red Planet.", "Jupiter, the largest planet in our solar system, has a prominent red spot.", "Saturn, famous for its rings, is sometimes mistaken for the Red Planet." ] scores = model.predict([(query, passage) for passage in passages]) print(scores) - Notebooks
- Google Colab
- Kaggle
CrossEncoder based on nomic-ai/modernbert-embed-base
This is a Cross Encoder model finetuned from nomic-ai/modernbert-embed-base using the sentence-transformers library. It computes scores for pairs of texts, which can be used for text reranking and semantic search.
CityBehavEx
This checkpoint is the profile-coherence aligner (demographic profile consistency scoring) in
CityBehavEx, a scalable, empirically
validated LLM-assisted urban mobility simulation platform. It is served
alongside CityBehavEx's other CrossEncoder aligners by
scripts/serve_aligners.py and referenced directly by repo id in scenario
configs (e.g. schedule.alignment_model, activities.alignment_model,
profiles.coherence_alignment_model, profiles.ownership_alignment_model,
activities.poi_type_alignment_model).
If you use this model, please cite CityBehavEx:
@misc{santos2026citybehavex,
title = {CityBehavEx: A Scalable and Empirically Validated LLM-Assisted Urban Simulation Platform},
author = {Santos, Gustavo H. and Viana, Aline and Silva, Thiago H.},
year = {2026},
eprint = {2607.12086},
archivePrefix = {arXiv},
primaryClass = {cs.CL},
url = {https://arxiv.org/abs/2607.12086}
}
Model Details
Model Description
- Model Type: Cross Encoder
- Base model: nomic-ai/modernbert-embed-base
- Maximum Sequence Length: 8192 tokens
- Number of Output Labels: 1 label
- Supported Modality: Text
Model Sources
- Documentation: Sentence Transformers Documentation
- Documentation: Cross Encoder Documentation
- Repository: Sentence Transformers on GitHub
- Hugging Face: Cross Encoders on Hugging Face
Full Model Architecture
CrossEncoder(
(0): Transformer({'transformer_task': 'sequence-classification', 'modality_config': {'text': {'method': 'forward', 'method_output_name': 'logits'}}, 'module_output_name': 'scores', 'architecture': 'ModernBertForSequenceClassification'})
)
Usage
Direct Usage (Sentence Transformers)
First install the Sentence Transformers library:
pip install -U sentence-transformers
Then you can load this model and run inference.
from sentence_transformers import CrossEncoder
# Download from the 🤗 Hub
model = CrossEncoder("cross_encoder_model_id")
# Get scores for pairs of inputs
pairs = [
['Chloé is a 17-year-old female working as a manager. They have master or above level education and poor health. They live as: couple with children. \nScore whether this synthetic agent profile is demographically coherent and plausible. Use 0 for impossible or highly inconsistent profiles and 1 for fully coherent profiles.', 'demographically coherent and valid synthetic agent profile'],
['Clément is a 26-year-old male working as a technician or associate professional. They have secondary or less level education and good health. They live as: living with parents. \nScore whether this synthetic agent profile is demographically coherent and plausible. Use 0 for impossible or highly inconsistent profiles and 1 for fully coherent profiles.', 'demographically coherent and valid synthetic agent profile'],
['Chloé is a 25-year-old female working as a service or sales worker. They have secondary or less level education and very poor health. They live as: couple without children. \nScore whether this synthetic agent profile is demographically coherent and plausible. Use 0 for impossible or highly inconsistent profiles and 1 for fully coherent profiles.', 'demographically coherent and valid synthetic agent profile'],
['Théo is a 42-year-old male working as a service or sales worker. They have bachelor level education and good health. They live as: living alone. \nScore whether this synthetic agent profile is demographically coherent and plausible. Use 0 for impossible or highly inconsistent profiles and 1 for fully coherent profiles.', 'demographically coherent and valid synthetic agent profile'],
['Camille is a 16-year-old female working as a manager. They have no diploma level education and good health. They live as: couple with children. \nScore whether this synthetic agent profile is demographically coherent and plausible. Use 0 for impossible or highly inconsistent profiles and 1 for fully coherent profiles.', 'demographically coherent and valid synthetic agent profile'],
]
scores = model.predict(pairs)
print(scores)
# [0.0939 0.7422 0.8488 0.9852 0.1007]
# Or rank different texts based on similarity to a single text
ranks = model.rank(
'Chloé is a 17-year-old female working as a manager. They have master or above level education and poor health. They live as: couple with children. \nScore whether this synthetic agent profile is demographically coherent and plausible. Use 0 for impossible or highly inconsistent profiles and 1 for fully coherent profiles.',
[
'demographically coherent and valid synthetic agent profile',
'demographically coherent and valid synthetic agent profile',
'demographically coherent and valid synthetic agent profile',
'demographically coherent and valid synthetic agent profile',
'demographically coherent and valid synthetic agent profile',
]
)
# [{'corpus_id': ..., 'score': ...}, {'corpus_id': ..., 'score': ...}, ...]
Training Details
Training Dataset
Unnamed Dataset
- Size: 8,000 training samples
- Columns:
sentence_0,sentence_1, andlabel - Approximate statistics based on the first 100 samples:
sentence_0 sentence_1 label type string string float modality text text details - min: 62 tokens
- mean: 66.98 tokens
- max: 73 tokens
- min: 10 tokens
- mean: 10.0 tokens
- max: 10 tokens
- min: 0.0
- mean: 0.43
- max: 1.0
- Samples:
sentence_0 sentence_1 label Chloé is a 17-year-old female working as a manager. They have master or above level education and poor health. They live as: couple with children.
Score whether this synthetic agent profile is demographically coherent and plausible. Use 0 for impossible or highly inconsistent profiles and 1 for fully coherent profiles.demographically coherent and valid synthetic agent profile0.1Clément is a 26-year-old male working as a technician or associate professional. They have secondary or less level education and good health. They live as: living with parents.
Score whether this synthetic agent profile is demographically coherent and plausible. Use 0 for impossible or highly inconsistent profiles and 1 for fully coherent profiles.demographically coherent and valid synthetic agent profile0.8Chloé is a 25-year-old female working as a service or sales worker. They have secondary or less level education and very poor health. They live as: couple without children.
Score whether this synthetic agent profile is demographically coherent and plausible. Use 0 for impossible or highly inconsistent profiles and 1 for fully coherent profiles.demographically coherent and valid synthetic agent profile0.8 - Loss:
BinaryCrossEntropyLosswith these parameters:{ "activation_fn": "torch.nn.modules.linear.Identity", "pos_weight": null }
Training Hyperparameters
Non-Default Hyperparameters
num_train_epochs: 10
All Hyperparameters
Click to expand
per_device_train_batch_size: 8num_train_epochs: 10max_steps: -1learning_rate: 5e-05lr_scheduler_type: linearlr_scheduler_kwargs: Nonewarmup_steps: 0optim: adamw_torch_fusedoptim_args: Noneweight_decay: 0.0adam_beta1: 0.9adam_beta2: 0.999adam_epsilon: 1e-08optim_target_modules: Nonegradient_accumulation_steps: 1average_tokens_across_devices: Truemax_grad_norm: 1label_smoothing_factor: 0.0bf16: Falsefp16: Falsebf16_full_eval: Falsefp16_full_eval: Falsetf32: Nonegradient_checkpointing: Falsegradient_checkpointing_kwargs: Nonetorch_compile: Falsetorch_compile_backend: Nonetorch_compile_mode: Noneuse_liger_kernel: Falseliger_kernel_config: Noneuse_cache: Falseneftune_noise_alpha: Nonetorch_empty_cache_steps: Noneauto_find_batch_size: Falselog_on_each_node: Truelogging_nan_inf_filter: Trueinclude_num_input_tokens_seen: nolog_level: passivelog_level_replica: warningdisable_tqdm: Falseproject: huggingfacetrackio_space_id: Nonetrackio_bucket_id: Nonetrackio_static_space_id: Noneper_device_eval_batch_size: 8prediction_loss_only: Trueeval_on_start: Falseeval_do_concat_batches: Trueeval_use_gather_object: Falseeval_accumulation_steps: Noneinclude_for_metrics: []batch_eval_metrics: Falsesave_only_model: Falsesave_on_each_node: Falseenable_jit_checkpoint: Falsepush_to_hub: Falsehub_private_repo: Nonehub_model_id: Nonehub_strategy: every_savehub_always_push: Falsehub_revision: Noneload_best_model_at_end: Falseignore_data_skip: Falserestore_callback_states_from_checkpoint: Falsefull_determinism: Falseseed: 42data_seed: Noneuse_cpu: Falseaccelerator_config: {'split_batches': False, 'dispatch_batches': None, 'even_batches': True, 'use_seedable_sampler': True, 'non_blocking': False, 'gradient_accumulation_kwargs': None}parallelism_config: Nonedataloader_drop_last: Falsedataloader_num_workers: 0dataloader_pin_memory: Truedataloader_persistent_workers: Falsedataloader_prefetch_factor: Nonedataloader_multiprocessing_context: Nonedataloader_in_order: Trueremove_unused_columns: Truelabel_names: Nonetrain_sampling_strategy: randomlength_column_name: lengthddp_find_unused_parameters: Noneddp_bucket_cap_mb: Noneddp_broadcast_buffers: Falseddp_static_graph: Noneddp_backend: Noneddp_timeout: 1800fsdp: Nonefsdp_config: Nonedeepspeed: Nonedebug: []skip_memory_metrics: Truedo_predict: Falseresume_from_checkpoint: Nonelocal_rank: -1prompts: Nonebatch_sampler: batch_samplermulti_dataset_batch_sampler: proportionalrouter_mapping: {}learning_rate_mapping: {}warmup_ratio: None
Training Logs
| Epoch | Step | Training Loss |
|---|---|---|
| 0.5 | 500 | 0.4738 |
| 1.0 | 1000 | 0.4035 |
| 1.5 | 1500 | 0.3949 |
| 2.0 | 2000 | 0.3908 |
| 2.5 | 2500 | 0.3867 |
| 3.0 | 3000 | 0.3887 |
| 3.5 | 3500 | 0.3843 |
| 4.0 | 4000 | 0.3873 |
| 4.5 | 4500 | 0.3831 |
| 5.0 | 5000 | 0.3874 |
| 5.5 | 5500 | 0.3869 |
| 6.0 | 6000 | 0.3824 |
| 6.5 | 6500 | 0.3853 |
| 7.0 | 7000 | 0.3828 |
| 7.5 | 7500 | 0.3849 |
| 8.0 | 8000 | 0.3827 |
| 8.5 | 8500 | 0.3833 |
| 9.0 | 9000 | 0.3836 |
| 9.5 | 9500 | 0.3822 |
| 10.0 | 10000 | 0.3840 |
Training Time
- Training: 9.9 minutes
Framework Versions
- Python: 3.12.13
- Sentence Transformers: 6.0.1
- Transformers: 5.17.0
- PyTorch: 2.11.0+cu130
- Accelerate: 1.15.0
- Datasets: 5.0.1
- Tokenizers: 0.23.2
Additional Resources
- Training and Finetuning Reranker Models with Sentence Transformers: the end-to-end guide for training or finetuning Cross Encoder (reranker) models.
- Multimodal Embedding & Reranker Models with Sentence Transformers: use text, image, audio, and video reranker models through the same API.
- Training and Finetuning Multimodal Embedding & Reranker Models with Sentence Transformers: training multimodal Cross Encoders.
Citation
BibTeX
Sentence Transformers
@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",
}
- Downloads last month
- 471
Model tree for gefgu/modernbert-profile-coherence-aligner
Base model
answerdotai/ModernBERT-base