Views
No views yet
SentenceTransformer(
(0): Transformer({'transformer_task': 'feature-extraction', 'modality_config': {'text': {'method': 'forward', 'method_output_name': 'last_hidden_state'}}, 'module_output_name': 'token_embeddings', 'architecture': 'LlamaBidirectionalModel'})
(1): Pooling({'embedding_dimension': 2048, 'pooling_mode': 'mean', 'include_prompt': True})
(2): Normalize({})
)pip install -U sentence-transformers1from sentence_transformers import SentenceTransformer
2
3# Download from the 🤗 Hub
4model = SentenceTransformer("abanfalvi/finance-llama-nemotron-embed-1b-v2")
5# Run inference
6queries = [
7 'deferred tax assets opening balance inventory loss 2022',
8]
9documents = [
10 'The movements of deferred tax assets and deferred tax liabilities were as follows:\n\nFor the year ended December 31, 2022\n\nd. Deferred tax assets and liabilities\n\nDecember 31 2022 2021 Current tax liabilities Income tax payable $ 473,781 $ 255,744\n\nb. Income tax recognized in other comprehensive income\n\nOpening Balance Recognized in Profit or Loss Recognized in Other Comprehensive Income Closing Balance Deferred tax assets Temporary differences Unrealized loss on write-down of inventories $ 250 $ 8 $ - $ 258 Unrealized employee compensation 241 (241) - - Exchanges difference on foreign operations 73,357 - (23,271) 50,086 Unrealized exchange losses 15,010 (15,010) - - Total $ 88,858 $ (15,243) $ (23,271) $ 50,344 Deferred tax liabilities Temporary differences Unrealized exchange gain $ - $ 2,525 $ - $ 2,525\n\nFor the Year Ended December 31 2022 2021 Deferred tax In respect of the current year $ (23,271) $ (9,510) Translation of foreign operations\n\nc. Current tax assets and liabilities',
11 'e. Information on unused loss carryforwards\n\nThe movements of deferred tax assets and deferred tax liabilities were as follows:\n\nFor the year ended December 31, 2021\n\nDecember 31 2022 Loss carryforwards Expiry in 2027 $ - Expiry in 2028 $ 46,056 Expiry in 2029 $ 72,486 Expiry in 2030 $ 97,191 Total $ 215,733\n\nOpening Balance Recognized in Profit or Loss Closing Balance Temporary differences Unrealized exchange gain and loss $ 3 $ (332) Unrealized inventory loss $ 1,113 $ 560 Others $ 402 $ (228) Total $ 1,518 $ -\n\nOpening Balance Recognized in Profit or Loss Closing Balance Temporary differences Unrealized exchange gain and loss $ 113 $ (110) Unrealized inventory loss $ 1,849 $ (736) Others $ (444) $ 846 Total $ 1,518 $ -\n\nUnused Amount Expiry Year $ 46,056 2028 $ 72,486 2029 $ 97,191 2030 Total $ 215,733\n\nd. Items for which no deferred tax assets have been recognized\n\nThe Company offset certain deferred tax assets and deferred tax liabilities which met the offset criteria.\n\nc. Deferred tax assets and liabilities\n\nLoss carryforwards as of December 31, 2022 comprised:\n\nFor the year ended December 31, 2022',
12 'PILGRIM FOODSERVICE LIMITED\nNOTES TO THE FINANCIAL STATEMENTS (CONTINUED)\nFOR THE YEAR ENDED 30 APRIL 2025\n\n| | | 2025 £ | 2024 £ |\n|---|---|---|---|\n| 17 | Stocks | | |\n| | Finished goods and goods for resale | 4,149,563 | 3,602,784 |\n\n| | | 2025 £ | 2024 £ |\n|---|---|---|---|\n| 18 | Debtors | | |\n| | Amounts falling due within one year: | | |\n| | Trade debtors | 4,056,601 | 3,939,861 |\n| | Corporation tax recoverable | 386,649 | - |\n| | Other debtors | 51,029 | 285,195 |\n| | Prepayments and accrued income | 894,513 | 810,422 |\n| | | 5,388,792 | 5,035,478 |\n\n| | | Notes | 2025 £ | 2024 £ |\n|---|---|---|---|---|\n| 19 | Creditors: amounts falling due within one year | | | |\n| | Bank loans and overdrafts | 21 | 750,004 | 1,572,186 |\n| | Obligations under finance leases | 22 | 929,382 | 221,527 |\n| | Trade creditors | | 6,972,922 | 5,358,604 |\n| | Amounts due to group undertakings | | 49,502 | - |\n| | Corporation tax | | 324,698 | 342,382 |\n| | Other taxation and social security | | 843,069 | 292,562 |\n| | Other creditors | | 3,361,115 | 802,545 |\n| | Accruals | | | 2,269,019 |\n| | | | 13,230,692 | 10,858,915 |\n\n| | | Notes | 2025 £ | 2024 £ |\n|---|---|---|---|---|\n| 20 | Creditors: amounts falling due after more than one year | | | |\n| | Bank loans and overdrafts | 21 | 1,174,972 | 1,925,178 |\n| | Obligations under finance leases | 22 | 3,026,050 | 927,331 |\n| | Shareholder loans | 21 | 1,925,125 | 681,083 |\n| | | | 6,126,147 | 3,533,592 |\n\n-26-',
13]
14query_embeddings = model.encode_query(queries)
15document_embeddings = model.encode_document(documents)
16print(query_embeddings.shape, document_embeddings.shape)
17# [1, 2048] [3, 2048]
18
19# Get the similarity scores for the embeddings
20similarities = model.similarity(query_embeddings, document_embeddings)
21print(similarities)
22# tensor([[0.5039, 0.4746, 0.2891]], dtype=torch.bfloat16)financial_corpusInformationRetrievalEvaluator| Metric | Value |
|---|---|
| cosine_accuracy@1 | 0.663 |
| cosine_accuracy@3 | 0.787 |
| cosine_accuracy@5 | 0.837 |
| cosine_accuracy@10 | 0.897 |
| cosine_precision@1 | 0.663 |
| cosine_precision@3 | 0.2623 |
| cosine_precision@5 | 0.1674 |
| cosine_precision@10 | 0.0897 |
| cosine_recall@1 | 0.663 |
| cosine_recall@3 | 0.787 |
| cosine_recall@5 | 0.837 |
| cosine_recall@10 | 0.897 |
| cosine_ndcg@10 | 0.7762 |
| cosine_mrr@10 | 0.7381 |
| cosine_map@100 | 0.7426 |
anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
| anchor | positive | negative |
|---|---|---|
What is the unit of measurement used for Oil EUR on the vertical axis of the Relative Peer Well Performance chart? | Relative Peer Well Performance[object Object][object Object]Source: RSEG (2019)[object Object][object Object]Note: Bubbles are sized by well count and colored by oil %[object Object][object Object]Oil EUR (Mbbl/1,000')[object Object][object Object]| | 0 | 5 | 10 | 15 | 20 | 25 | 30 | 35 | 40 | 45 | 50 | |---|---|---|---|---|---|---|---|---|---|---|---|---| | Average Horizontal Interwell Spacing (ft) | 0 | 100 | 200 | 300 | 400 | 500 | 600 | 700 | 80|[object Object][object Object]Wellhead Liquids (%)[object Object][object Object]<40 | 40-55 | >55 | Exhibit B |
Q3 FY22 EBITDA decline reasons inflation | Net sales is growing at healthy CAGR of 8.7% over 2 years, despite pandemic induced setbacks on our summer season brand sales[object Object][object Object]Metric YoY Gr 2 Year CAGR Net Sales 2.3 % 8.7% EBIDTA (34.8) % (7.0) % PBT * 1205.7 % 104.0% PAT * 1239.1 % 134.4%[object Object][object Object]Quarterly Performance - Q3 FY 22[object Object][object Object]EBIDTA de-grew mainly due to impact on gross margins on account of product mix and inflationary price increases in key raw materials & packing materials[object Object][object Object]PBT after exceptional items is growing mainly due to reduction in finance cost due to repayment of intercompany loan and nil exceptional item in the current quarter compared to Rs.342 million in previous year comparable period[object Object][object Object]The previous year comparable period includes exceptional items of Rs.342 million. | PVC Pipes and Fittings volume registered a y-o-y growth of 4.2% to 1,58,266 MT.
[object Object]
[object Object]
[object Object]
[object Object]
[object Object]
[object Object]
[object Object]
[object Object]
[object Object]
[object Object]
[object Object]
[object Object]
[object Object]
[object Object]
[object Object]
[object Object]
[object Object]
[object Object]Strong YTD perfo... |
| What was the total value of trade creditors in 2022? | 2022 (£) 2021 (£) Trade debtors 1,849,235 1,877,661 Other debtors 105,874 75,543 Prepayments and accrued income 36,698 61,917 Total 1,991,807 2,015,121 Deferred tax asset (note 10) 341,000 408,000 Total Debtors 2,332,807 2,423,121
[object Object]
[object Object]
[object Object]
[object Object]
[object Object]
[object Object]
[object Object]
[object Object]
[object Object]
[object Object]
[object Object]20... | 15 Other non-current liabilities
[object Object]
[object Object]
[object Object]
[object Object]
[object Object]
[object Object]
[object Object]Trade and other debtors are shown after deducting a provision for impairment against tenant debto... |MultipleNegativesRankingLoss with these parameters:1{
2 "scale": 20.0,
3 "similarity_fct": "cos_sim",
4 "gather_across_devices": false,
5 "directions": [
6 "query_to_doc"
7 ],
8 "partition_mode": "joint",
9 "hardness_mode": null,
10 "hardness_strength": 0.0
11}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
| anchor | positive | negative |
|---|---|---|
What was the regional distribution of holdings within the United States and Canada during the spring of 2020? | OWNERSHIP STAKE[object Object][object Object]March 2020 March 2019 Fully operational 97% 97% Construction 3% 3%[object Object][object Object]70 HICL ANNUAL REPORT 2020[object Object][object Object]March 2020 March 2019 UK 76% 77% EU 17% 15% North America 7% 8%[object Object][object Object]March 2020 March 2019 PPP projects 72% 71% Demand-based assets 20% 21% Regulated assets 8% 8%[object Object][object Object]MARKET SEGMENT[object Object][object Object]GEOGRAPHIC LOCATION[object Object][object Object]INVESTMENT STATUS[object Object][object Object]3.6 Portfolio Analysis[object Object][object Object]March 2020 March 2019 100% ownership 26% 25% 50%-100% ownership 34% 32% Less than 50% ownership 40% 43%[object Object][object Object]SECTOR[object Object][object Object]as at 31 March 2020[object Object][object Object]March 2020 March 2019 Accommodation 11% 11% Education 14% 15% Electricity, Gas & Water 8% 8% Health 30% 28% Fire, Law & Order 7% 7% Transport 30% 31% | PROPERTY, PLANT & EQUIPMENT |
What is the interest rate charged on the loan to Karbon Carlton Staindrop LLP? | Unrelieved tax losses of £68,994 (2023: £68,994) remain available to offset against future taxable profits.
[object Object]
[object Object]
[object Object]
[object Object]
[object Object]
[object Object]
[object Object]
[object Object]
[object Object]2024 (£) 2023 (£) Amounts owed by Karbon Carlton Staindrop LLP - loan capital 1,776... | RWK GOODMAN LLP
NOTES TO THE FINANCIAL STATEMENTS (CONTINUED)
FOR THE YEAR ENDED 31 MARCH 2025
[object Object]
[object Object]
[object Object]**19 Provision... |
| Newmont Corporation 2022 restricted cash reconciliation | ```markdown
NEWMONT CORPORATION
CONSOLIDATED STATEMENTS OF CASH FLOWS
[object Object]
[object Object]
[object Object](1) Acquisitions, net for the year ended December 31, 2021 is primarily related to the asset acquisition of the remaining 85.1% of GT Gold. Refer to
Note 1 for additional information.
The accompanying ... | Component Percentage Personal Bonus 6% Base Salary 14% Company Bonus 15% Restricted Stock Units 20% Performance Stock Units 45%[object Object][object Object]Component Objectives/Alignment Stock Price Performance • Value varies with NEM performance • Retention component Relative Stock Performance Long-term incentive to outperform gold competitors: • Absolute share price performance • Relative TSR performance Operating Performance Growth Pipeline/ Sustainability • Safety, Free Cash Flow, CSC, ROCE • Reserves and Resources • Sustainability and External Relations Leadership Measures • Individual objectives (with defined targets) • Leadership Pipeline results Base Salary • Adjusted for performance, scope • Market rate[object Object][object Object]Objectives/Alignment[object Object][object Object]Incentive vehicles balance key performance elements[object Object][object Object]Pay mix (CEO % shown)[object Object][object Object]Executive Compensation Structure[object Object][object Object]BANK OF AMERICA 2020 GLOBAL METALS, MINING & STEEL CONFERENCE NEWMONT CORPORATION[object Object][object Object]Plans support value chain to operating and market performance |MultipleNegativesRankingLoss with these parameters:1{
2 "scale": 20.0,
3 "similarity_fct": "cos_sim",
4 "gather_across_devices": false,
5 "directions": [
6 "query_to_doc"
7 ],
8 "partition_mode": "joint",
9 "hardness_mode": null,
10 "hardness_strength": 0.0
11}per_device_train_batch_size: 2max_steps: 100learning_rate: 3e-05lr_scheduler_type: constant_with_warmupwarmup_steps: 0.03gradient_accumulation_steps: 8fp16: Truegradient_checkpointing: Trueload_best_model_at_end: Trueper_device_train_batch_size: 2num_train_epochs: 3.0max_steps: 100learning_rate: 3e-05lr_scheduler_type: constant_with_warmuplr_scheduler_kwargs: Nonewarmup_steps: 0.03optim: adamw_torch_fusedoptim_args: Noneweight_decay: 0.0adam_beta1: 0.9adam_beta2: 0.999adam_epsilon: 1e-08optim_target_modules: Nonegradient_accumulation_steps: 8average_tokens_across_devices: Truemax_grad_norm: 1.0label_smoothing_factor: 0.0bf16: Falsefp16: Truebf16_full_eval: Falsefp16_full_eval: Falsetf32: Nonegradient_checkpointing: Truegradient_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: trackioper_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: Trueignore_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: Noneremove_unused_columns: Truelabel_names: Nonetrain_sampling_strategy: randomlength_column_name: lengthddp_find_unused_parameters: Noneddp_bucket_cap_mb: Noneddp_broadcast_buffers: Falseddp_backend: Noneddp_timeout: 1800fsdp: []fsdp_config: {'min_num_params': 0, 'xla': False, 'xla_fsdp_v2': False, 'xla_fsdp_grad_ckpt': False}deepspeed: Nonedebug: []skip_memory_metrics: Truedo_predict: Falseresume_from_checkpoint: Nonewarmup_ratio: Nonelocal_rank: -1prompts: Nonebatch_sampler: batch_samplermulti_dataset_batch_sampler: proportionalrouter_mapping: {}learning_rate_mapping: {}| Epoch | Step | Training Loss | Validation Loss | financial_corpus_cosine_ndcg@10 |
|---|---|---|---|---|
| 0.0021 | 1 | 0.8457 | - | - |
| 0.0041 | 2 | 0.7959 | - | - |
| 0.0062 | 3 | 0.4863 | - | - |
| 0.0083 | 4 | 0.6768 | - | - |
| 0.0103 | 5 | 0.5869 | - | - |
| 0.0124 | 6 | 0.5967 | - | - |
| 0.0144 | 7 | 0.7900 | - | - |
| 0.0165 | 8 | 0.7373 | - | - |
| 0.0186 | 9 | 0.4951 | - | - |
| 0.0206 | 10 | 0.5439 | - | - |
| 0.0227 | 11 | 0.4619 | - | - |
| 0.0248 | 12 | 0.6357 | - | - |
| 0.0268 | 13 | 0.5322 | - | - |
| 0.0289 | 14 | 0.4619 | - | - |
| 0.0309 | 15 | 0.6592 | - | - |
| 0.0330 | 16 | 0.7598 | - | - |
| 0.0351 | 17 | 0.4766 | - | - |
| 0.0371 | 18 | 0.7471 | - | - |
| 0.0392 | 19 | 0.7686 | - | - |
| 0.0413 | 20 | 0.4521 | - | - |
| 0.0433 | 21 | 0.5898 | - | - |
| 0.0454 | 22 | 0.5352 | - | - |
| 0.0474 | 23 | 0.7715 | - | - |
| 0.0495 | 24 | 0.5576 | - | - |
| 0.0516 | 25 | 0.6650 | 0.7444 | - |
| 0.0536 | 26 | 0.2832 | - | - |
| 0.0557 | 27 | 0.5557 | - | - |
| 0.0578 | 28 | 0.6738 | - | - |
| 0.0598 | 29 | 0.5635 | - | - |
| 0.0619 | 30 | 0.5264 | - | - |
| 0.0640 | 31 | 0.5576 | - | - |
| 0.0660 | 32 | 0.7480 | - | - |
| 0.0681 | 33 | 0.3516 | - | - |
| 0.0701 | 34 | 0.4668 | - | - |
| 0.0722 | 35 | 0.3682 | - | - |
| 0.0743 | 36 | 0.4756 | - | - |
| 0.0763 | 37 | 0.4404 | - | - |
| 0.0784 | 38 | 0.4287 | - | - |
| 0.0805 | 39 | 0.4297 | - | - |
| 0.0825 | 40 | 0.5137 | - | - |
| 0.0846 | 41 | 0.5010 | - | - |
| 0.0866 | 42 | 0.3525 | - | - |
| 0.0887 | 43 | 0.4746 | - | - |
| 0.0908 | 44 | 0.4766 | - | - |
| 0.0928 | 45 | 0.4453 | - | - |
| 0.0949 | 46 | 0.5273 | - | - |
| 0.0970 | 47 | 0.5205 | - | - |
| 0.0990 | 48 | 0.4502 | - | - |
| 0.1011 | 49 | 0.6289 | - | - |
| 0.1031 | 50 | 0.6191 | 0.6595 | - |
| 0.1052 | 51 | 0.4775 | - | - |
| 0.1073 | 52 | 0.4365 | - | - |
| 0.1093 | 53 | 0.4365 | - | - |
| 0.1114 | 54 | 0.5840 | - | - |
| 0.1135 | 55 | 0.3516 | - | - |
| 0.1155 | 56 | 0.3691 | - | - |
| 0.1176 | 57 | 0.4629 | - | - |
| 0.1196 | 58 | 0.6191 | - | - |
| 0.1217 | 59 | 0.5908 | - | - |
| 0.1238 | 60 | 0.3848 | - | - |
| 0.1258 | 61 | 0.3730 | - | - |
| 0.1279 | 62 | 0.5732 | - | - |
| 0.1300 | 63 | 0.5830 | - | - |
| 0.1320 | 64 | 0.4727 | - | - |
| 0.1341 | 65 | 0.3613 | - | - |
| 0.1362 | 66 | 0.4678 | - | - |
| 0.1382 | 67 | 0.5986 | - | - |
| 0.1403 | 68 | 0.2617 | - | - |
| 0.1423 | 69 | 0.3809 | - | - |
| 0.1444 | 70 | 0.4395 | - | - |
| 0.1465 | 71 | 0.3418 | - | - |
| 0.1485 | 72 | 0.3809 | - | - |
| 0.1506 | 73 | 0.3721 | - | - |
| 0.1527 | 74 | 0.3877 | - | - |
| 0.1547 | 75 | 0.3438 | 0.6091 | - |
| 0.1568 | 76 | 0.4131 | - | - |
| 0.1588 | 77 | 0.6221 | - | - |
| 0.1609 | 78 | 0.3652 | - | - |
| 0.1630 | 79 | 0.3164 | - | - |
| 0.1650 | 80 | 0.3135 | - | - |
| 0.1671 | 81 | 0.2764 | - | - |
| 0.1692 | 82 | 0.7373 | - | - |
| 0.1712 | 83 | 0.3223 | - | - |
| 0.1733 | 84 | 0.4902 | - | - |
| 0.1753 | 85 | 0.4219 | - | - |
| 0.1774 | 86 | 0.3428 | - | - |
| 0.1795 | 87 | 0.3291 | - | - |
| 0.1815 | 88 | 0.3135 | - | - |
| 0.1836 | 89 | 0.3945 | - | - |
| 0.1857 | 90 | 0.2939 | - | - |
| 0.1877 | 91 | 0.3135 | - | - |
| 0.1898 | 92 | 0.3682 | - | - |
| 0.1919 | 93 | 0.5322 | - | - |
| 0.1939 | 94 | 0.3594 | - | - |
| 0.1960 | 95 | 0.2666 | - | - |
| 0.1980 | 96 | 0.3730 | - | - |
| 0.2001 | 97 | 0.4292 | - | - |
| 0.2022 | 98 | 0.4131 | - | - |
| 0.2042 | 99 | 0.4580 | - | - |
| 0.2063 | 100 | 0.3711 | 0.5381 | - |
| -1 | -1 | - | - | 0.7762 |
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{oord2019representationlearningcontrastivepredictive,
2 title={Representation Learning with Contrastive Predictive Coding},
3 author={Aaron van den Oord and Yazhe Li and Oriol Vinyals},
4 year={2019},
5 eprint={1807.03748},
6 archivePrefix={arXiv},
7 primaryClass={cs.LG},
8 url={https://arxiv.org/abs/1807.03748},
9}