Hospital Emaillevel Newtrainmethod
| Entity Passport | |
| Registry ID | hf-model--chenyuecho--hospital_emaillevel_newtrainmethod |
| Provider | huggingface |
Cite this model
Academic & Research Attribution
@misc{hf_model__chenyuecho__hospital_emaillevel_newtrainmethod,
author = {ChenyuEcho},
title = {Hospital Emaillevel Newtrainmethod Model},
year = {2026},
howpublished = {\url{https://huggingface.co/chenyuecho/hospital_emaillevel_newtrainmethod}},
note = {Accessed via Free2AITools Knowledge Fortress}
} 🔬Technical Deep Dive
Full Specifications [+]▾
Quick Commands
huggingface-cli download chenyuecho/hospital_emaillevel_newtrainmethod pip install -U transformers ⚖️ Nexus Index V2.0
💬 Index Insight
FNI V2.0 for Hospital Emaillevel Newtrainmethod: Semantic (S:50), Authority (A:0), Popularity (P:2), Recency (R:92), Quality (Q:65).
Verification Authority
🚀 What's Next?
Technical Deep Dive
SentenceTransformer based on Qwen/Qwen3-Embedding-0.6B
This is a sentence-transformers model finetuned from Qwen/Qwen3-Embedding-0.6B. It maps sentences & paragraphs to a 1024-dimensional dense vector space and can be used for semantic textual similarity, semantic search, paraphrase mining, text classification, clustering, and more.
Model Details
Model Description
- Model Type: Sentence Transformer
- Base model: Qwen/Qwen3-Embedding-0.6B
- Maximum Sequence Length: 32768 tokens
- Output Dimensionality: 1024 dimensions
- Similarity Function: Cosine Similarity
Model Sources
- Documentation: Sentence Transformers Documentation
- Repository: Sentence Transformers on GitHub
- Hugging Face: Sentence Transformers on Hugging Face
Full Model Architecture
SentenceTransformer(
(0): Transformer({'max_seq_length': 32768, 'do_lower_case': False, 'architecture': 'Qwen3Model'})
(1): Pooling({'word_embedding_dimension': 1024, 'pooling_mode_cls_token': False, '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': True, 'include_prompt': True})
(2): Normalize()
)
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 SentenceTransformer
# Download from the 🤗 Hub
model = SentenceTransformer("sentence_transformers_model_id")
# Run inference
queries = [
"What is Patricia Vasquez\u0027s availability for a risk mitigation meeting today regarding the OR3 surgical incident?",
]
documents = [
'Subject: Re: URGENT: Incident Report - OR3 Surgical Case\nDate: 2026-01-28T09:16:00\nFrom: David R. Park\nParticipants: Patricia Vasquez\n\nBody:\nDear Patricia,\n\nThank you for your prompt and thorough notification regarding the OR3 surgical incident. Given the seriousness of the situation, I strongly recommend convening a risk mitigation meeting with the core team as soon as possible today. It is essential that we conduct a careful review of all documentation related to the event and ensure our messaging to the patient, family, and regulatory bodies remains consistent and accurate. Please remind all involved staff to refrain from independent written or verbal statements about the incident; all communications should be directed through my office to preserve attorney-client privilege. Additionally, we must protect peer review privilege wherever it may apply.\n\nLet me know your availability for a meeting, and I will coordinate accordingly. I appreciate your diligence as we navigate this sensitive matter together.\n\nBest regards,\nDavid',
'Subject: Re: Cultural Competency Training Compliance Concerns\nDate: 2025-10-23T12:42:00\nFrom: Maria C. Gonzalez\nParticipants: Carlos J. Rodriguez\n\nBody:\nHi Carlos,\n\nThank you for your prompt response and for taking immediate action to reinforce the cultural competency training requirements with your team. I appreciate your commitment to ensuring that all staff members complete the training by the outlined deadline. Please keep me updated if you encounter any challenges or need additional support, as maintaining regulatory compliance is a top priority for our department. Your attention to this matter is greatly appreciated.\n\nBest regards,\nMaria',
'Subject: Fuera de la oficina: Karen M. Phillips\nDate: 2025-09-29T14:19:00\nFrom: Karen M. Phillips\nParticipants: Remitente\n\nBody:\nEstimado/a,\n\nGracias por su correo. Lamentablemente, hoy me encuentro fuera de la oficina debido a una enfermedad imprevista. Mi ausencia se debe a la necesidad de un monitoreo riguroso de mis síntomas y ajustes de medicación, prestando especial atención a posibles interacciones farmacológicas y la dosificación precisa para evitar complicaciones.\n\nSi su consulta es urgente, o requiere revisión inmediata de interacción de medicamentos o recomendaciones sobre dosificación, por favor contacte a mi colega Dr. Samuel Rivera al correo [email protected], quien podrá asistirle y revisar cualquier cuestión relativa a protocolos de seguridad farmacológica en mi ausencia.\n\nAgradezco su comprensión ante la situación. Revisaré y responderé su mensaje a mi regreso tan pronto me sea posible.\n\nAtentamente,\nKaren M. Phillips\n\n--\nKaren Phillips, PharmD | Pharmacy Services',
]
query_embeddings = model.encode_query(queries)
document_embeddings = model.encode_document(documents)
print(query_embeddings.shape, document_embeddings.shape)
# [1, 1024] [3, 1024]
# Get the similarity scores for the embeddings
similarities = model.similarity(query_embeddings, document_embeddings)
print(similarities)
# tensor([[ 0.7148, -0.0698, 0.0708]], dtype=torch.bfloat16)
Evaluation
Metrics
Information Retrieval
- Dataset:
val_full_corpus - Evaluated with
InformationRetrievalEvaluator
| Metric | Value |
|---|---|
| cosine_accuracy@1 | 0.8173 |
| cosine_accuracy@3 | 0.887 |
| cosine_accuracy@5 | 0.9203 |
| cosine_accuracy@10 | 0.9651 |
| cosine_precision@1 | 0.8173 |
| cosine_precision@3 | 0.2957 |
| cosine_precision@5 | 0.1841 |
| cosine_precision@10 | 0.0965 |
| cosine_recall@1 | 0.8173 |
| cosine_recall@3 | 0.887 |
| cosine_recall@5 | 0.9203 |
| cosine_recall@10 | 0.9651 |
| cosine_ndcg@10 | 0.8867 |
| cosine_mrr@10 | 0.8623 |
| cosine_map@100 | 0.8644 |
Training Details
Training Dataset
Unnamed Dataset
- Size: 2,384 training samples
- Columns:
sentence_0andsentence_1 - Approximate statistics based on the first 1000 samples:
sentence_0 sentence_1 type string string details - min: 10 tokens
- mean: 26.23 tokens
- max: 73 tokens
- min: 114 tokens
- mean: 175.45 tokens
- max: 391 tokens
- Samples:
sentence_0 sentence_1 Which specific crash cart items should be prioritized for procurement outreach during this week's supply review?Subject: Re: Emergency Code Response Drill – Supply Issues Noted
Date: 2025-10-02T18:56:00
From: Dr. Samantha L. Chen
Participants: Carol A. Campbell
Body:
Hi Carol,
Thank you for bringing these supply challenges to my attention. I will have my team conduct a thorough review of all crash cart inventories during our upcoming drills this week, and we will keep a detailed record of any additional shortages or supply concerns we encounter. Additionally, I’ll reach out to our procurement contacts to identify potential alternative suppliers and expedite any viable options. Please let me know if there are specific items you need us to prioritize or if you require immediate assistance coordinating with vendors.
Best regards,
SamanthaWho is responsible for coordinating this week's biannual calibration with Biomedical Engineering for ADL lab equipment (electronic lifts and hand dynamometer) and what is the preferred time window?Subject: Lab Equipment Calibration Reminder – Request for Coordination
Date: 2026-01-04T17:47:00
From: Jordan P. Anderson
Participants: Chloe R. Anderson
Body:
Hello Chloe,
I wanted to bring to your attention that several pieces of adaptive equipment in our ADL lab are due for their biannual calibration, including the electronic lifts and the hand strength dynamometer. As maintaining accurate calibration is critical for patient safety and functional assessments, could you assist in coordinating a time for calibration with biomedical engineering this week? I’m hoping to minimize disruptions to our daily ADL training schedule, so your input on the best window would be invaluable.
Let me know how you’d like to proceed, and thanks for your help in ensuring safe practice environments for our patients.
Best,
Jordan
--
Jordan Anderson, OTR/L | Occupational TherapyCan the phlebotomy slot be moved to before 9:30 AM to resolve the overlap with the CT with IV contrast and blood draw?Subject: OR Schedule Conflict: Contrast Protocol Coordination Needed
Date: 2026-01-12T21:21:00
From: Emily T. O'Brien
Participants: Carlos J. Rodriguez
Body:
Hi Carlos,
I've noticed a scheduling overlap for tomorrow's 10:00 AM ortho case—the patient is listed for both a CT with IV contrast and a blood draw in the OR holding area at the same time. To avoid protocol delays and ensure contrast safety, could you shift the phlebotomy slot to before 9:30 AM? Let me know if that works or if you need me to adjust the CT start time instead.
Thanks for collaborating on this.
Best,
Emily - Loss:
MultipleNegativesRankingLosswith these parameters:json{ "scale": 20.0, "similarity_fct": "cos_sim", "gather_across_devices": false }
Training Hyperparameters
Non-Default Hyperparameters
per_device_train_batch_size: 16per_device_eval_batch_size: 16multi_dataset_batch_sampler: round_robin
All Hyperparameters
Click to expand
do_predict: Falseeval_strategy: noprediction_loss_only: Trueper_device_train_batch_size: 16per_device_eval_batch_size: 16gradient_accumulation_steps: 1eval_accumulation_steps: Nonetorch_empty_cache_steps: Nonelearning_rate: 5e-05weight_decay: 0.0adam_beta1: 0.9adam_beta2: 0.999adam_epsilon: 1e-08max_grad_norm: 1num_train_epochs: 3max_steps: -1lr_scheduler_type: linearlr_scheduler_kwargs: Nonewarmup_ratio: Nonewarmup_steps: 0log_level: passivelog_level_replica: warninglog_on_each_node: Truelogging_nan_inf_filter: Trueenable_jit_checkpoint: Falsesave_on_each_node: Falsesave_only_model: Falserestore_callback_states_from_checkpoint: Falseuse_cpu: Falseseed: 42data_seed: Nonebf16: Falsefp16: Falsebf16_full_eval: Falsefp16_full_eval: Falsetf32: Nonelocal_rank: -1ddp_backend: Nonedebug: []dataloader_drop_last: Falsedataloader_num_workers: 0dataloader_prefetch_factor: Nonedisable_tqdm: Falseremove_unused_columns: Truelabel_names: Noneload_best_model_at_end: Falseignore_data_skip: Falsefsdp: []fsdp_config: {'min_num_params': 0, 'xla': False, 'xla_fsdp_v2': False, 'xla_fsdp_grad_ckpt': False}accelerator_config: {'split_batches': False, 'dispatch_batches': None, 'even_batches': True, 'use_seedable_sampler': True, 'non_blocking': False, 'gradient_accumulation_kwargs': None}parallelism_config: Nonedeepspeed: Nonelabel_smoothing_factor: 0.0optim: adamw_torch_fusedoptim_args: Nonegroup_by_length: Falselength_column_name: lengthproject: huggingfacetrackio_space_id: trackioddp_find_unused_parameters: Noneddp_bucket_cap_mb: Noneddp_broadcast_buffers: Falsedataloader_pin_memory: Truedataloader_persistent_workers: Falseskip_memory_metrics: Truepush_to_hub: Falseresume_from_checkpoint: Nonehub_model_id: Nonehub_strategy: every_savehub_private_repo: Nonehub_always_push: Falsehub_revision: Nonegradient_checkpointing: Falsegradient_checkpointing_kwargs: Noneinclude_for_metrics: []eval_do_concat_batches: Trueauto_find_batch_size: Falsefull_determinism: Falseddp_timeout: 1800torch_compile: Falsetorch_compile_backend: Nonetorch_compile_mode: Noneinclude_num_input_tokens_seen: noneftune_noise_alpha: Noneoptim_target_modules: Nonebatch_eval_metrics: Falseeval_on_start: Falseuse_liger_kernel: Falseliger_kernel_config: Noneeval_use_gather_object: Falseaverage_tokens_across_devices: Trueuse_cache: Falseprompts: Nonebatch_sampler: batch_samplermulti_dataset_batch_sampler: round_robinrouter_mapping: {}learning_rate_mapping: {}
Training Logs
| Epoch | Step | val_full_corpus_cosine_ndcg@10 |
|---|---|---|
| 1.0 | 149 | 0.8776 |
| 2.0 | 298 | 0.8866 |
| 3.0 | 447 | 0.8867 |
Framework Versions
- Python: 3.12.12
- Sentence Transformers: 5.2.3
- Transformers: 5.0.0
- PyTorch: 2.10.0+cu128
- Accelerate: 1.12.0
- Datasets: 4.0.0
- Tokenizers: 0.22.2
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",
}
MultipleNegativesRankingLoss
@misc{henderson2017efficient,
title={Efficient Natural Language Response Suggestion for Smart Reply},
author={Matthew Henderson and Rami Al-Rfou and Brian Strope and Yun-hsuan Sung and Laszlo Lukacs and Ruiqi Guo and Sanjiv Kumar and Balint Miklos and Ray Kurzweil},
year={2017},
eprint={1705.00652},
archivePrefix={arXiv},
primaryClass={cs.CL}
}
⚠️ Incomplete Data
Some information about this model is not available. Use with Caution - Verify details from the original source before relying on this data.
View Original Source →📝 Limitations & Considerations
- • Benchmark scores may vary based on evaluation methodology and hardware configuration.
- • VRAM requirements are estimates; actual usage depends on quantization and batch size.
- • FNI scores are relative rankings and may change as new models are added.
- ⚠ License Unknown: Verify licensing terms before commercial use.
Social Proof
AI Summary: Based on Hugging Face metadata. Not a recommendation.
🛡️ Model Transparency Report
Technical metadata sourced from upstream repositories.
🆔 Identity & Source
- id
- hf-model--chenyuecho--hospital_emaillevel_newtrainmethod
- slug
- chenyuecho--hospital_emaillevel_newtrainmethod
- source
- huggingface
- author
- ChenyuEcho
- license
- tags
- sentence-transformers, safetensors, qwen3, sentence-similarity, feature-extraction, dense, generated_from_trainer, dataset_size:2384, loss:multiplenegativesrankingloss, arxiv:1908.10084, arxiv:1705.00652, base_model:qwen/qwen3-embedding-0.6b, base_model:finetune:qwen/qwen3-embedding-0.6b, model-index, text-embeddings-inference, endpoints_compatible, region:us
⚙️ Technical Specs
- architecture
- null
- params billions
- null
- context length
- null
- pipeline tag
- sentence-similarity
📊 Engagement & Metrics
- downloads
- 15
- stars
- 0
- forks
- 0
Data indexed from public sources. Updated daily.