Views
No views yet
SentenceTransformer(
(0): Transformer({'max_seq_length': 8192, 'do_lower_case': False}) with Transformer model: NewModel
(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})
)pip install -U sentence-transformers1from sentence_transformers import SentenceTransformer
2
3# Download from the 🤗 Hub
4model = SentenceTransformer("sentence_transformers_model_id")
5# Run inference
6sentences = [
7 'What are some of the legal frameworks mentioned in the context that aim to protect personal information, and how do they relate to data privacy concerns?',
8 "65. See, e.g., Scott Ikeda. Major Data Broker Exposes 235 Million Social Media Profiles in Data Lead: Info\nAppears to Have Been Scraped Without Permission. CPO Magazine. Aug. 28, 2020. https://\nwww.cpomagazine.com/cyber-security/major-data-broker-exposes-235-million-social-media-profiles-\nin-data-leak/; Lily Hay Newman. 1.2 Billion Records Found Exposed Online in a Single Server . WIRED,\nNov. 22, 2019. https://www.wired.com/story/billion-records-exposed-online/\n66.Lola Fadulu. Facial Recognition Technology in Public Housing Prompts Backlash . New York Times.\nSept. 24, 2019.\nhttps://www.nytimes.com/2019/09/24/us/politics/facial-recognition-technology-housing.html\n67. Jo Constantz. ‘They Were Spying On Us’: Amazon, Walmart, Use Surveillance Technology to Bust\nUnions. Newsweek. Dec. 13, 2021.\nhttps://www.newsweek.com/they-were-spying-us-amazon-walmart-use-surveillance-technology-bust-\nunions-1658603\n68. See, e.g., enforcement actions by the FTC against the photo storage app Everalbaum\n(https://www.ftc.gov/legal-library/browse/cases-proceedings/192-3172-everalbum-inc-matter), and\nagainst Weight Watchers and their subsidiary Kurbo(https://www.ftc.gov/legal-library/browse/cases-proceedings/1923228-weight-watchersww)\n69. See, e.g., HIPAA, Pub. L 104-191 (1996); Fair Debt Collection Practices Act (FDCPA), Pub. L. 95-109\n(1977); Family Educational Rights and Privacy Act (FERPA) (20 U.S.C. § 1232g), Children's Online\nPrivacy Protection Act of 1998, 15 U.S.C. 6501–6505, and Confidential Information Protection andStatistical Efficiency Act (CIPSEA) (116 Stat. 2899)\n70. Marshall Allen. You Snooze, You Lose: Insurers Make The Old Adage Literally True . ProPublica. Nov.\n21, 2018.\nhttps://www.propublica.org/article/you-snooze-you-lose-insurers-make-the-old-adage-literally-true\n71.Charles Duhigg. How Companies Learn Your Secrets. The New York Times. Feb. 16, 2012.\nhttps://www.nytimes.com/2012/02/19/magazine/shopping-habits.html72. Jack Gillum and Jeff Kao. Aggression Detectors: The Unproven, Invasive Surveillance Technology\nSchools are Using to Monitor Students. ProPublica. Jun. 25, 2019.\nhttps://features.propublica.org/aggression-detector/the-unproven-invasive-surveillance-technology-\nschools-are-using-to-monitor-students/\n73.Drew Harwell. Cheating-detection companies made millions during the pandemic. Now students are\nfighting back. Washington Post. Nov. 12, 2020.\nhttps://www.washingtonpost.com/technology/2020/11/12/test-monitoring-student-revolt/\n74. See, e.g., Heather Morrison. Virtual Testing Puts Disabled Students at a Disadvantage. Government\nTechnology. May 24, 2022.\nhttps://www.govtech.com/education/k-12/virtual-testing-puts-disabled-students-at-a-disadvantage;\nLydia X. Z. Brown, Ridhi Shetty, Matt Scherer, and Andrew Crawford. Ableism And Disability\nDiscrimination In New Surveillance Technologies: How new surveillance technologies in education,\npolicing, health care, and the workplace disproportionately harm disabled people . Center for Democracy\nand Technology Report. May 24, 2022.https://cdt.org/insights/ableism-and-disability-discrimination-in-new-surveillance-technologies-how-new-surveillance-technologies-in-education-policing-health-care-and-the-workplace-disproportionately-harm-disabled-people/\n69",
9 '25 MP-2.3-002 Review and document accuracy, representativeness, relevance, suitability of data \nused at different stages of AI life cycle. Harmful Bias and Homogenization ; \nIntellectual Property \nMP-2.3-003 Deploy and document fact -checking techniques to verify the accuracy and \nveracity of information generated by GAI systems, especially when the \ninformation comes from multiple (or unknown) sources. Information Integrity \nMP-2.3-004 Develop and implement testing techniques to identify GAI produced content (e.g., synthetic media) that might be indistinguishable from human -generated content. Information Integrity \nMP-2.3-005 Implement plans for GAI systems to undergo regular adversarial testing to identify \nvulnerabilities and potential manipulation or misuse. Information Security \nAI Actor Tasks: AI Development, Domain Experts, TEVV \n \nMAP 3.4: Processes for operator and practitioner proficiency with AI system performance and trustworthiness – and relevant \ntechnical standards and certifications – are defined, assessed, and documented. \nAction ID Suggested Action GAI Risks \nMP-3.4-001 Evaluate whether GAI operators and end -users can accurately understand \ncontent lineage and origin. Human -AI Configuration ; \nInformation Integrity \nMP-3.4-002 Adapt existing training programs to include modules on digital content \ntransparency. Information Integrity \nMP-3.4-003 Develop certification programs that test proficiency in managing GAI risks and \ninterpreting content provenance, relevant to specific industry and context. Information Integrity \nMP-3.4-004 Delineate human proficiency tests from tests of GAI capabilities. Human -AI Configuration \nMP-3.4-005 Implement systems to continually monitor and track the outcomes of human- GAI \nconfigurations for future refinement and improvements . Human -AI Configuration ; \nInformation Integrity \nMP-3.4-006 Involve the end -users, practitioners, and operators in GAI system in prototyping \nand testing activities. Make sure these tests cover various scenarios , such as crisis \nsituations or ethically sensitive contexts. Human -AI Configuration ; \nInformation Integrity ; Harmful Bias \nand Homogenization ; Dangerous , \nViolent, or Hateful Content \nAI Actor Tasks: AI Design, AI Development, Domain Experts, End -Users, Human Factors, Operation and Monitoring',
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]InformationRetrievalEvaluator| Metric | Value |
|---|---|
| cosine_accuracy@1 | 0.7188 |
| cosine_accuracy@3 | 0.9219 |
| cosine_accuracy@5 | 0.9688 |
| cosine_accuracy@10 | 1.0 |
| cosine_precision@1 | 0.7188 |
| cosine_precision@3 | 0.3073 |
| cosine_precision@5 | 0.1937 |
| cosine_precision@10 | 0.1 |
| cosine_recall@1 | 0.7188 |
| cosine_recall@3 | 0.9219 |
| cosine_recall@5 | 0.9688 |
| cosine_recall@10 | 1.0 |
| cosine_ndcg@10 | 0.8728 |
| cosine_mrr@10 | 0.8305 |
| cosine_map@100 | 0.8305 |
| dot_accuracy@1 | 0.7344 |
| dot_accuracy@3 | 0.9219 |
| dot_accuracy@5 | 0.9688 |
| dot_accuracy@10 | 1.0 |
| dot_precision@1 | 0.7344 |
| dot_precision@3 | 0.3073 |
| dot_precision@5 | 0.1937 |
| dot_precision@10 | 0.1 |
| dot_recall@1 | 0.7344 |
| dot_recall@3 | 0.9219 |
| dot_recall@5 | 0.9688 |
| dot_recall@10 | 1.0 |
| dot_ndcg@10 | 0.8785 |
| dot_mrr@10 | 0.8383 |
| dot_map@100 | 0.8383 |
sentence_0 and sentence_1| sentence_0 | sentence_1 | |
|---|---|---|
| type | string | string |
| details |
|
|
| sentence_0 | sentence_1 |
|---|---|
What are the primary objectives outlined in the "Blueprint for an AI Bill of Rights" as it pertains to the American people? | BLUEPRINT FOR AN [object Object]AI B ILL OF [object Object]RIGHTS [object Object]MAKING AUTOMATED [object Object]SYSTEMS WORK FOR [object Object]THE AMERICAN PEOPLE [object Object]OCTOBER 2022 |
In what ways does the document propose to ensure that automated systems are designed and implemented to benefit society? | BLUEPRINT FOR AN [object Object]AI B ILL OF [object Object]RIGHTS [object Object]MAKING AUTOMATED [object Object]SYSTEMS WORK FOR [object Object]THE AMERICAN PEOPLE [object Object]OCTOBER 2022 |
What is the primary purpose of the Blueprint for an AI Bill of Rights as published by the White House Office of Science and Technology Policy in October 2022? | About this Document [object Object]The Blueprint for an AI Bill of Rights: Making Automated Systems Work for the American People was [object Object]published by the White House Office of Science and Technology Policy in October 2022. This framework was [object Object]released one year after OSTP announced the launch of a process to develop “a bill of rights for an AI-powered [object Object]world.” Its release follows a year of public engagement to inform this initiative. The framework is available [object Object]online at: [object Object] [object Object]About the Office of Science and Technology Policy [object Object]The Office of Science and Technology Policy (OSTP) was established by the National Science and Technology [object Object]Policy, Organization, and Priorities Act of 1976 to provide the President and others within the Executive Office [object Object]of the President with advice on the scientific, engineering, and technological aspects of the economy, national [object Object]security, health, foreign relations, the environment, and the technological recovery and use of resources, among [object Object]other topics. OSTP leads interagency science and technology policy coordination efforts, assists the Office of [object Object]Management and Budget (OMB) with an annual review and analysis of Federal research and development in [object Object]budgets, and serves as a source of scientific and technological analysis and judgment for the President with [object Object]respect to major policies, plans, and programs of the Federal Government. [object Object]Legal Disclaimer [object Object]The Blueprint for an AI Bill of Rights: Making Automated Systems Work for the American People is a white paper [object Object]published by the White House Office of Science and Technology Policy. It is intended to support the [object Object]development of policies and practices that protect civil rights and promote democratic values in the building, [object Object]deployment, and governance of automated systems. [object Object]The Blueprint for an AI Bill of Rights is non-binding and does not constitute U.S. government policy. It [object Object]does not supersede, modify, or direct an interpretation of any existing statute, regulation, policy, or [object Object]international instrument. It does not constitute binding guidance for the public or Federal agencies and [object Object]therefore does not require compliance with the principles described herein. It also is not determinative of what [object Object]the U.S. government’s position will be in any international negotiation. Adoption of these principles may not [object Object]meet the requirements of existing statutes, regulations, policies, or international instruments, or the [object Object]requirements of the Federal agencies that enforce them. These principles are not intended to, and do not, [object Object]prohibit or limit any lawful activity of a government agency, including law enforcement, national security, or [object Object]intelligence activities. [object Object]The appropriate application of the principles set forth in this white paper depends significantly on the [object Object]context in which automated systems are being utilized. In some circumstances, application of these principles [object Object]in whole or in part may not be appropriate given the intended use of automated systems to achieve government [object Object]agency missions. Future sector-specific guidance will likely be necessary and important for guiding the use of [object Object]automated systems in certain settings such as AI systems used as part of school building security or automated [object Object]health diagnostic systems. [object Object]The Blueprint for an AI Bill of Rights recognizes that law enforcement activities require a balancing of [object Object]equities, for example, between the protection of sensitive law enforcement information and the principle of [object Object]notice; as such, notice may not be appropriate, or may need to be adjusted to protect sources, methods, and [object Object]other law enforcement equities. Even in contexts where these principles may not apply in whole or in part, [object Object]federal departments and agencies remain subject to judicial, privacy, and civil liberties oversight as well as [object Object]existing policies and safeguards that govern automated systems, including, for example, Executive Order 13960, [object Object]Promoting the Use of Trustworthy Artificial Intelligence in the Federal Government (December 2020). [object Object]This white paper recognizes that national security (which includes certain law enforcement and [object Object]homeland security activities) and defense activities are of increased sensitivity and interest to our nation’s [object Object]adversaries and are often subject to special requirements, such as those governing classified information and [object Object]other protected data. Such activities require alternative, compatible safeguards through existing policies that [object Object]govern automated systems and AI, such as the Department of Defense (DOD) AI Ethical Principles and [object Object]Responsible AI Implementation Pathway and the Intelligence Community (IC) AI Ethics Principles and [object Object]Framework. The implementation of these policies to national security and defense activities can be informed by [object Object]the Blueprint for an AI Bill of Rights where feasible. |
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 20.0,
3 "similarity_fct": "cos_sim"
4}eval_strategy: stepsper_device_train_batch_size: 5per_device_eval_batch_size: 5num_train_epochs: 2multi_dataset_batch_sampler: round_robinoverwrite_output_dir: Falsedo_predict: Falseeval_strategy: stepsprediction_loss_only: Trueper_device_train_batch_size: 5per_device_eval_batch_size: 5per_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: Falseuse_ipex: 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}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: batch_samplermulti_dataset_batch_sampler: round_robin| Epoch | Step | dot_map@100 |
|---|---|---|
| 0.4237 | 50 | 0.8383 |
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{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}