Views
No views yet
SentenceTransformer(
(0): CLIPModel()
)pip install -U sentence-transformers1from sentence_transformers import SentenceTransformer
2
3# Download from the 🤗 Hub
4model = SentenceTransformer("WorkStation0/clip-finetuned-satellite-v.0.11")
5# Run inference
6sentences = [
7 "It's a mountainous area.it is white, brown and green .It's a piece of green mountains.it is a piece of green mountains .this is mountainous region .",
8 'Many aircraft are parked next to the terminals near the runways of an airport.Many aircraft are parked next to terminals near airstrips at an airport.Many planes are parked next to the terminals near the runways in an airport.many planes are parked next to terminals near runways at an airport.many planes are parked next to terminals near runways in an airport .',
9 'yellow ribbon beach is between green trees and dark green ocean with white waves.yellow ribbon beach lies between green trees and dark green ocean with white waves.Yellow ribbon beach is between green trees and dark green ocean with white waves.Yellow ribbon beach is between green trees and dark green ocean with white waves.yellow ribbon beach is between green trees and dark green ocean with white waves .',
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]clip-valid-triplet, clip-train-triplet and clip-test-tripletTripletEvaluator| Metric | clip-valid-triplet | clip-train-triplet | clip-test-triplet |
|---|---|---|---|
| cosine_accuracy | 0.9992 | 0.9997 | 0.9992 |
anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | PIL.PngImagePlugin.PngImageFile | string | string |
| details |
|
|
| anchor | positive | negative |
|---|---|---|
<PIL.PngImagePlugin.PngImageFile image mode=RGB size=224x224 at 0x7A03B1561BD0> | Many buildings and some green trees are located in an industrial area.there are many parking cars on the area next to the buildings in the industrial region.there are many cars parking on the region beside the buildings in the industrial region .many buildings and some green trees are located in an industrial area.many buildings and some green trees are in an industrial area . | It's a piece of white snow mountain.It's a piece of snow white mountain.It's a piece of white snow mountain.It's a piece of white snow mountain.it is a piece of white snow mountain . |
<PIL.PngImagePlugin.PngImageFile image mode=RGB size=224x224 at 0x7A03B1560390> | Many buildings are located in a commercial area.Many buildings are located in a commercial area.Many buildings are located in a commercial area.Many buildings are in a commercial area.many buildings are in a commercial area . | The mountain of yellow and green has a vein texture.the mountain of yellow and green has a vein texture.the mountain of yellow and green has a texture of vein .mountains with long and narrow ridges traverse in this range .it is a piece of irregular green mountains . |
<PIL.PngImagePlugin.PngImageFile image mode=RGB size=224x224 at 0x7A03B1560C50> | There's a strong bridge over the river.There are many houses on both sides of the river.there are many houses on both sides of the river .There's a strong bridge over the river.there is a strong bridge over the river . | many small green spots are scattered in a piece of kaki nueland.Many small green spots are scattered in a piece of naked khaki.Many small green spots are scattered in a piece of khaki stripe.many small green spots are scattered in a piece of khaki bareland.many small green spots are scattered in a piece of khaki bareland . |
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 20.0,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | PIL.PngImagePlugin.PngImageFile | string | string |
| details |
|
|
| anchor | positive | negative |
|---|---|---|
<PIL.PngImagePlugin.PngImageFile image mode=RGB size=224x224 at 0x7A03B2DEDC50> | Many trees are planted around the playground.There's a green football pitch on the red track.there's a green football field on the red track .a lot of trees are planted around the playground.a lot of trees are planted around the playground . | It's a piece of uneven kaki nueland.It's a piece of uneven naked khaki.It's a piece of irregular Kaki stripping.It's a piece of unequally brazen khaki.it is a piece of uneven khaki bareland . |
<PIL.PngImagePlugin.PngImageFile image mode=RGB size=224x224 at 0x7A03B2C5E010> | It's a big bridge and a few buildings with some grass.the roads are grey and the ground is brown .two parallel bridges on a black river are close to many green plants and several buildings.two parallel bridges on a black river are near many green plants and several buildings .this is a big bridge and some buildings with a little grass . | Cylinder storage tanks are built on two square concrete fields near some trees and a parking lot.Cylinder storage tanks are built on two square concrete grounds near some trees and a parking lot.cylinder storage tanks are built on two square concrete ground near some trees and a parking lot .these storage tanks are painted in different colors located next to the wood .many storage tanks are near some green trees . |
<PIL.PngImagePlugin.PngImageFile image mode=RGB size=224x224 at 0x7A03B2DB1250> | the lake with borders is surrounded by roads a parking lot and rows of houses.the lake with edges is surrounded by roads a parking lot and rows of houses.the lake with bylands is surrounded by roads a parking lot and rows of houses .green ponds sit in this resort surrounded by rows of red houses .some buildings and green trees are in a resort with several green ponds . | many storage tanks of different sizes are in a factory.Many storage tanks in different sizes are in a factory.Many storage tanks in different sizes are in a factory.many storage tanks in different sizes are in a factory.many storage tanks in different sizes are in a factory . |
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 20.0,
3 "similarity_fct": "cos_sim"
4}eval_strategy: epochper_device_train_batch_size: 2per_device_eval_batch_size: 2gradient_accumulation_steps: 4fp16: Truedataloader_num_workers: 2load_best_model_at_end: Trueoverwrite_output_dir: Falsedo_predict: Falseeval_strategy: epochprediction_loss_only: Trueper_device_train_batch_size: 2per_device_eval_batch_size: 2per_gpu_train_batch_size: Noneper_gpu_eval_batch_size: Nonegradient_accumulation_steps: 4eval_accumulation_steps: Nonetorch_empty_cache_steps: Nonelearning_rate: 5e-05weight_decay: 0.0adam_beta1: 0.9adam_beta2: 0.999adam_epsilon: 1e-08max_grad_norm: 1.0num_train_epochs: 3max_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: Truefp16_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: 2dataloader_prefetch_factor: Nonepast_index: -1disable_tqdm: Falseremove_unused_columns: Truelabel_names: Noneload_best_model_at_end: Trueignore_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: Nonehub_always_push: Falsegradient_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: Falseneftune_noise_alpha: Noneoptim_target_modules: Nonebatch_eval_metrics: Falseeval_on_start: Falseuse_liger_kernel: Falseeval_use_gather_object: Falseaverage_tokens_across_devices: Falseprompts: Nonebatch_sampler: batch_samplermulti_dataset_batch_sampler: proportional| Epoch | Step | Training Loss | Validation Loss | clip-valid-triplet_cosine_accuracy | clip-train-triplet_cosine_accuracy | clip-test-triplet_cosine_accuracy |
|---|---|---|---|---|---|---|
| -1 | -1 | - | - | 0.9863 | - | - |
| 0.0994 | 76 | 1.3892 | - | - | - | - |
| 0.1989 | 152 | 0.7274 | - | - | - | - |
| 0.2983 | 228 | 0.5566 | - | - | - | - |
| 0.3978 | 304 | 0.4034 | - | - | - | - |
| 0.4972 | 380 | 0.4335 | - | - | - | - |
| 0.5967 | 456 | 0.4176 | - | - | - | - |
| 0.6961 | 532 | 0.3955 | - | - | - | - |
| 0.7956 | 608 | 0.3396 | - | - | - | - |
| 0.8950 | 684 | 0.306 | - | - | - | - |
| 0.9944 | 760 | 0.2526 | - | - | - | - |
| 1.0 | 765 | - | 0.0786 | 1.0 | - | - |
| 1.0929 | 836 | 0.2531 | - | - | - | - |
| 1.1923 | 912 | 0.3303 | - | - | - | - |
| 1.2918 | 988 | 0.2122 | - | - | - | - |
| 1.3912 | 1064 | 0.2478 | - | - | - | - |
| 1.4907 | 1140 | 0.3588 | - | - | - | - |
| 1.5901 | 1216 | 0.2023 | - | - | - | - |
| 1.6896 | 1292 | 0.2395 | - | - | - | - |
| 1.7890 | 1368 | 0.1154 | - | - | - | - |
| 1.8885 | 1444 | 0.2729 | - | - | - | - |
| 1.9879 | 1520 | 0.1708 | - | - | - | - |
| 2.0 | 1530 | - | 0.0700 | 0.9992 | - | - |
| 2.0864 | 1596 | 0.1841 | - | - | - | - |
| 2.1858 | 1672 | 0.1382 | - | - | - | - |
| 2.2852 | 1748 | 0.1452 | - | - | - | - |
| 2.3847 | 1824 | 0.2616 | - | - | - | - |
| 2.4841 | 1900 | 0.2024 | - | - | - | - |
| 2.5836 | 1976 | 0.2883 | - | - | - | - |
| 2.6830 | 2052 | 0.2461 | - | - | - | - |
| 2.7825 | 2128 | 0.3249 | - | - | - | - |
| 2.8819 | 2204 | 0.1299 | - | - | - | - |
| 2.9814 | 2280 | 0.2171 | - | - | - | - |
| 3.0 | 2295 | - | 0.0652 | 0.9992 | - | - |
| -1 | -1 | - | - | 0.9992 | 0.9997 | 0.9992 |
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}