Views
No views yet
SentenceTransformer(
(0): Transformer({'max_seq_length': 8192, 'do_lower_case': False}) with Transformer model: XLMRobertaModel
(1): Pooling({'word_embedding_dimension': 1024, '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()
)pip install -U sentence-transformers1from sentence_transformers import SentenceTransformer
2
3# Download from the 🤗 Hub
4model = SentenceTransformer("JINSUP/bge-m3-ko-axriv-agent-part-2025")
5# Run inference
6sentences = [
7 '"Emergent Agency"의 연구에서 실증적 탐색의 어려움은 무엇이며, 이를 극복하기 위해 어떤 연구가 진행되었나요?',
8 '"Emergent Agency"의 연구에서 실증적 탐색의 주요 어려움은 예측하기 어려운 특성과 비용 문제입니다. 섹션 3.6.3(Directions)에 따르면, 개별 구성 요소를 보았을 때 출현하는 속성을 예측하기 어렵고, 현실적 환경에서 대규모 최신 시스템의 출현 행동을 탐색하는 실험은 매우 도전적입니다. 이러한 실험은 많은 모델 인스턴스를 사용하기 때문에 비용이 많이 들고, 실제 세계와 유사한 환경과 \'샌드박스\'를 구축하기 어렵기 때문입니다. 그럼에도 불구하고, Chen et al. (2024d), Park et al. (2023a), Vezhnevets et al. (2023)의 연구는 간단한 게임에서 이러한 탐색이 가능하며 놀라운 결과를 이끌어낼 수 있음을 보여주었습니다. 이러한 연구는 더 현실적이거나 개방된 환경에서의 미래 연구를 위한 기초를 마련했습니다.',
9 "미래의 LLM 에이전트 프로토콜은 'adaptability, privacy preservation, and group-based interaction'과 같은 특성을 갖추어야 합니다. 이러한 특성들은 진화하는 에이전트 생태계를 지원하기 위해 필수적입니다. 적응성은 변화하는 환경과 요구에 대응할 수 있는 유연성을 제공하고, 개인정보 보호는 사용자의 데이터 보안과 프라이버시를 유지하는 데 중요합니다. 그룹 기반 상호작용은 다중 에이전트 시스템에서의 협력과 효율적인 작업 수행을 가능하게 합니다. 이러한 특성들은 에이전트 프로토콜이 더욱 강력하고 신뢰할 수 있는 시스템을 구축하는 데 기여합니다.",
10]
11embeddings = model.encode(sentences)
12print(embeddings.shape)
13# [3, 1024]
14
15# Get the similarity scores for the embeddings
16similarities = model.similarity(embeddings, embeddings)
17print(similarities.shape)
18# [3, 3]sentence_0 and sentence_1| sentence_0 | sentence_1 | |
|---|---|---|
| type | string | string |
| details |
|
|
| sentence_0 | sentence_1 |
|---|---|
"Agent Q: Advanced Reasoning and Learning for Autonomous AI Agents" 논문에서 제안된 Agent Q 프레임워크의 주요 기능은 무엇이며, 어떤 문제를 해결하기 위해 개발되었나요? | "Agent Q: Advanced Reasoning and Learning for Autonomous AI Agents" 논문에서 제안된 Agent Q 프레임워크는 자율적인 웹 에이전트의 성공률을 향상시키기 위해 개발되었습니다. 이 프레임워크의 주요 기능으로는 AI 피드백과 자기 비판(self-criticism)을 활용하여 각 노드에서 자가 평가 피드백을 제공하는 것이 있습니다. 이는 중간 보상으로 작용하여 검색 단계를 안내하는 데 도움을 줍니다. 또한, 오프라인 강화 학습을 통해 성공적이고 비성공적인 경로 모두에서 학습하여 모델의 능력을 향상시키는 Direct Preference Optimization (DPO) 알고리즘을 사용합니다. 이러한 기능들은 장기적인 작업에서 보상의 희소성과 신용 할당 문제를 해결하고, 실제 설정에서의 안전하지 않은 에이전트 행동을 줄이기 위해 설계되었습니다. |
TRACEGEN 멀티 에이전트 시스템은 어떤 역할을 수행하며, 이 시스템의 설계 목적은 무엇인가요? | TRACEGEN 멀티 에이전트 시스템은 복잡한 단계별 추론 트레이스를 생성하는 데 도움을 주는 헬퍼 에이전트를 활용합니다. 이 시스템의 설계 목적은 실제 도구에서의 피드백을 효과적으로 통합하는 유효한 추론 트레이스를 생성하는 데 있어서의 도전을 인식하고, 이를 극복하기 위한 것입니다. TRACEGEN은 TXAGENT-INSTRUCT 데이터셋의 구축 과정에서 다양한 질문에 대한 답변과 복잡한 추론을 수행하는 TXAGENT의 능력을 갖추게 하는 데 중요한 역할을 합니다. |
What is the DrugPC benchmark, and how is it used to evaluate TXAGENT's performance as mentioned in 'page_9.png'? | The DrugPC benchmark is a tool constructed to evaluate TXAGENT's performance in drug reasoning tasks. As mentioned in 'page_9.png', DrugPC includes 3,168 questions spanning 11 tasks related to drug information, such as drug overview, ingredients, warnings, dosage, pharmacology, and patient-focused information. This benchmark is used to assess TXAGENT's ability to handle a variety of drug-related reasoning scenarios and to mitigate data leakage from pretraining by focusing on drugs that were not included in the pretraining data. |
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 20.0,
3 "similarity_fct": "cos_sim"
4}per_device_train_batch_size: 32per_device_eval_batch_size: 32num_train_epochs: 2multi_dataset_batch_sampler: round_robinoverwrite_output_dir: Falsedo_predict: Falseeval_strategy: noprediction_loss_only: Trueper_device_train_batch_size: 32per_device_eval_batch_size: 32per_gpu_train_batch_size: Noneper_gpu_eval_batch_size: Nonegradient_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: 2max_steps: -1lr_scheduler_type: linearlr_scheduler_kwargs: {}warmup_ratio: 0.0warmup_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: Falsebf16: Falsefp16: 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: 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}parallelism_config: Nonedeepspeed: Nonelabel_smoothing_factor: 0.0optim: adamw_torch_fusedoptim_args: Noneadafactor: Falsegroup_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: Trueuse_legacy_prediction_loop: Falsepush_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_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: Noneinclude_tokens_per_second: Falseinclude_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: Trueprompts: Nonebatch_sampler: batch_samplermulti_dataset_batch_sampler: round_robin1@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{henderson2017efficient,
2 title={Efficient Natural Language Response Suggestion for Smart Reply},
3 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},
4 year={2017},
5 eprint={1705.00652},
6 archivePrefix={arXiv},
7 primaryClass={cs.CL}
8}