Views
No views yet
SentenceTransformer(
(0): Transformer({'max_seq_length': 256, 'do_lower_case': False, 'architecture': 'BertModel'})
(1): Pooling({'word_embedding_dimension': 384, 'pooling_mode_cls_token': False, 'pooling_mode_mean_tokens': True, '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("sentence_transformers_model_id")
5# Run inference
6sentences = [
7 'how do i check if a string is in a list in python',
8 'def isin(elems, line):\n """Check if an element from a list is in a string.\n\n :type elems: list\n :type line: str\n\n """\n found = False\n for e in elems:\n if e in line.lower():\n found = True\n break\n return found',
9 'def dedup_list(l):\n """Given a list (l) will removing duplicates from the list,\n preserving the original order of the list. Assumes that\n the list entrie are hashable."""\n dedup = set()\n return [ x for x in l if not (x in dedup or dedup.add(x))]',
10]
11embeddings = model.encode(sentences)
12print(embeddings.shape)
13# [3, 384]
14
15# Get the similarity scores for the embeddings
16similarities = model.similarity(embeddings, embeddings)
17print(similarities)
18# tensor([[1.0000, 0.8394, 0.2006],
19# [0.8394, 1.0000, 0.1654],
20# [0.2006, 0.1654, 1.0000]])anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
| anchor | positive | negative |
|---|---|---|
python code to write bool value 1 | def writeBoolean(self, n):[object Object] """[object Object] Writes a Boolean to the stream.[object Object] """[object Object] t = TYPE_BOOL_TRUE[object Object][object Object] if n is False:[object Object] t = TYPE_BOOL_FALSE[object Object][object Object] self.stream.write(t) | def cmd_dot(conf: Config):[object Object] """Print out a neat targets dependency tree based on requested targets.[object Object][object Object] Use graphviz to render the dot file, e.g.:[object Object][object Object] > ybt dot :foo :bar | dot -Tpng -o graph.png[object Object] """[object Object] build_context = BuildContext(conf)[object Object] populate_targets_graph(build_context, conf)[object Object] if conf.output_dot_file is None:[object Object] write_dot(build_context, conf, sys.stdout)[object Object] else:[object Object] with open(conf.output_dot_file, 'w') as out_file:[object Object] write_dot(build_context, conf, out_file) |
"python how to manipulate clipboard" | def paste(xsel=False):[object Object] """Returns system clipboard contents."""[object Object] selection = "primary" if xsel else "clipboard"[object Object] try:[object Object] return subprocess.Popen(["xclip", "-selection", selection, "-o"], stdout=subprocess.PIPE).communicate()[0].decode("utf-8")[object Object] except OSError as why:[object Object] raise XclipNotFound | def log_request(self, code='-', size='-'):[object Object] """Selectively log an accepted request."""[object Object][object Object] if self.server.logRequests:[object Object] BaseHTTPServer.BaseHTTPRequestHandler.log_request(self, code, size) |
python colored output to html | def _format_json(data, theme):[object Object] """Pretty print a dict as a JSON, with colors if pygments is present."""[object Object] output = json.dumps(data, indent=2, sort_keys=True)[object Object][object Object] if pygments and sys.stdout.isatty():[object Object] style = get_style_by_name(theme)[object Object] formatter = Terminal256Formatter(style=style)[object Object] return pygments.highlight(output, JsonLexer(), formatter)[object Object][object Object] return output | def average(arr):[object Object] """average of the values, must have more than 0 entries.[object Object][object Object] :param arr: list of numbers[object Object] :type arr: number[] a number array[object Object] :return: average[object Object] :rtype: float[object Object][object Object] """[object Object] if len(arr) == 0:[object Object] sys.stderr.write("ERROR: no content in array to take average\n")[object Object] sys.exit()[object Object] if len(arr) == 1: return arr[0][object Object] return float(sum(arr))/float(len(arr)) |
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 20.0,
3 "similarity_fct": "cos_sim",
4 "gather_across_devices": false
5}per_device_train_batch_size: 16learning_rate: 1e-05num_train_epochs: 2warmup_steps: 1000router_mapping: {'texts': {'0': 'anchor', '1': 'positive', '2': 'negative'}}overwrite_output_dir: Falsedo_predict: Falseeval_strategy: noprediction_loss_only: Trueper_device_train_batch_size: 16per_device_eval_batch_size: 8per_gpu_train_batch_size: Noneper_gpu_eval_batch_size: Nonegradient_accumulation_steps: 1eval_accumulation_steps: Nonetorch_empty_cache_steps: Nonelearning_rate: 1e-05weight_decay: 0.0adam_beta1: 0.9adam_beta2: 0.999adam_epsilon: 1e-08max_grad_norm: 1.0num_train_epochs: 2max_steps: -1lr_scheduler_type: linearlr_scheduler_kwargs: {}warmup_ratio: 0.0warmup_steps: 1000log_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: proportionalrouter_mapping: {'texts': {'0': 'anchor', '1': 'positive', '2': 'negative'}}learning_rate_mapping: {}| Epoch | Step | Training Loss |
|---|---|---|
| 0.0408 | 50 | 0.2257 |
| 0.0816 | 100 | 0.2447 |
| 0.1223 | 150 | 0.2289 |
| 0.1631 | 200 | 0.1962 |
| 0.2039 | 250 | 0.2165 |
| 0.2447 | 300 | 0.1851 |
| 0.2855 | 350 | 0.1546 |
| 0.3263 | 400 | 0.1698 |
| 0.3670 | 450 | 0.1945 |
| 0.4078 | 500 | 0.1622 |
| 0.4486 | 550 | 0.15 |
| 0.4894 | 600 | 0.1409 |
| 0.5302 | 650 | 0.15 |
| 0.5710 | 700 | 0.1467 |
| 0.6117 | 750 | 0.1661 |
| 0.6525 | 800 | 0.1816 |
| 0.6933 | 850 | 0.1437 |
| 0.7341 | 900 | 0.1388 |
| 0.7749 | 950 | 0.1295 |
| 0.8157 | 1000 | 0.1305 |
| 0.8564 | 1050 | 0.1634 |
| 0.8972 | 1100 | 0.1117 |
| 0.9380 | 1150 | 0.1539 |
| 0.9788 | 1200 | 0.1393 |
| 1.0196 | 1250 | 0.1131 |
| 1.0604 | 1300 | 0.1082 |
| 1.1011 | 1350 | 0.0915 |
| 1.1419 | 1400 | 0.0934 |
| 1.1827 | 1450 | 0.1133 |
| 1.2235 | 1500 | 0.095 |
| 1.2643 | 1550 | 0.1215 |
| 1.3051 | 1600 | 0.0908 |
| 1.3458 | 1650 | 0.1316 |
| 1.3866 | 1700 | 0.1179 |
| 1.4274 | 1750 | 0.1013 |
| 1.4682 | 1800 | 0.1039 |
| 1.5090 | 1850 | 0.0887 |
| 1.5498 | 1900 | 0.1073 |
| 1.5905 | 1950 | 0.0961 |
| 1.6313 | 2000 | 0.099 |
| 1.6721 | 2050 | 0.0972 |
| 1.7129 | 2100 | 0.0966 |
| 1.7537 | 2150 | 0.1205 |
| 1.7945 | 2200 | 0.1223 |
| 1.8352 | 2250 | 0.1076 |
| 1.8760 | 2300 | 0.0878 |
| 1.9168 | 2350 | 0.1255 |
| 1.9576 | 2400 | 0.0996 |
| 1.9984 | 2450 | 0.1058 |
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}