microsoft/ms_marco
Viewer • Updated • 1.11M • 25k • 243
How to use tomaarsen/reranker-msmarco-v1.1-MiniLM-L12-H384-uncased-listmle-pr3827 with sentence-transformers:
from sentence_transformers import CrossEncoder
model = CrossEncoder("tomaarsen/reranker-msmarco-v1.1-MiniLM-L12-H384-uncased-listmle-pr3827")
query = "Which planet is known as the Red Planet?"
passages = [
"Venus is often called Earth's twin because of its similar size and proximity.",
"Mars, known for its reddish appearance, is often referred to as the Red Planet.",
"Jupiter, the largest planet in our solar system, has a prominent red spot.",
"Saturn, famous for its rings, is sometimes mistaken for the Red Planet."
]
scores = model.predict([(query, passage) for passage in passages])
print(scores)This is a Cross Encoder model finetuned from microsoft/MiniLM-L12-H384-uncased on the ms_marco dataset using the sentence-transformers library. It computes scores for pairs of texts, which can be used for text reranking and semantic search.
CrossEncoder(
(0): Transformer({'transformer_task': 'sequence-classification', 'modality_config': {'text': {'method': 'forward', 'method_output_name': 'logits'}}, 'module_output_name': 'scores', 'architecture': 'BertForSequenceClassification'})
)
First install the Sentence Transformers library:
pip install -U sentence-transformers
Then you can load this model and run inference.
from sentence_transformers import CrossEncoder
# Download from the 🤗 Hub
model = CrossEncoder("tomaarsen/reranker-msmarco-v1.1-MiniLM-L12-H384-uncased-listmle-pr3827")
# Get scores for pairs of inputs
pairs = [
['average daily commute', 'The average daily commute is about 25 minutes. By Heather Huhman. + More. Heather R. Huhman With the average daily U.S. commute at about 25 minutes, many workers are spending at least an hour traveling each day to and from work. For some densely populated cities, such as Chicago or New York, this average is 30 to 35 minutes, sometimes more. Heather R. Huhman.'],
['average daily commute', "About 8% of workers in the USA commute an hour or longer; 4.3% have it much easier because they work from home. A quick look at the highs and lows of commuting: Source: Census Bureau's American Community Survey estimates, 2011 data. The average travel time for workers who commute by public transportation is higher than that of workers who use other modes, said Census Bureau statistician Brian McKenzie. For some workers, using transit is a necessity, but others simply choose a longer travel time over sitting in traffic.."],
['average daily commute', "Americans' commutes aren't getting longer. The national average, one-way daily commute is 25.5 minutes, and 4.3% of the nation's workers work from home. The average travel time for workers who commute by public transportation is higher than that of workers who use other modes, said Census Bureau statistician Brian McKenzie. For some workers, using transit is a necessity, but others simply choose a longer travel time over sitting in traffic.."],
['average daily commute', 'But the number spending a total of three hours or more travelling has risen to 1.84million-or nine per cent of the workforce. According to the results, accountants have the longest average daily commute – 75.6 minutes – followed by IT workers at 65.6 minutes. The number of Britons spending at least three hours a day on their work commute has risen by 50 per cent. The average total daily commuting distance has dropped from 18.5 miles in 2008 to 16.7 miles-a fall of 10 per cent-as people live slightly closer to their workplaces.'],
['average daily commute', "* = Less than 0.5%. According to the survey, American workers say they spend an average of 45.6 minutes commuting to and from work in a typical day. (This includes workers who report zero minutes commuting; excluding these workers yields an average commute time of 48.1 minutes). PRINCETON, NJ -- Gallup's annual Work and Education survey finds that American workers report spending an average of 4"],
]
scores = model.predict(pairs)
print(scores)
# [0.7326 0.4301 0.6397 0.5139 0.4981]
# Or rank different texts based on similarity to a single text
ranks = model.rank(
'average daily commute',
[
'The average daily commute is about 25 minutes. By Heather Huhman. + More. Heather R. Huhman With the average daily U.S. commute at about 25 minutes, many workers are spending at least an hour traveling each day to and from work. For some densely populated cities, such as Chicago or New York, this average is 30 to 35 minutes, sometimes more. Heather R. Huhman.',
"About 8% of workers in the USA commute an hour or longer; 4.3% have it much easier because they work from home. A quick look at the highs and lows of commuting: Source: Census Bureau's American Community Survey estimates, 2011 data. The average travel time for workers who commute by public transportation is higher than that of workers who use other modes, said Census Bureau statistician Brian McKenzie. For some workers, using transit is a necessity, but others simply choose a longer travel time over sitting in traffic..",
"Americans' commutes aren't getting longer. The national average, one-way daily commute is 25.5 minutes, and 4.3% of the nation's workers work from home. The average travel time for workers who commute by public transportation is higher than that of workers who use other modes, said Census Bureau statistician Brian McKenzie. For some workers, using transit is a necessity, but others simply choose a longer travel time over sitting in traffic..",
'But the number spending a total of three hours or more travelling has risen to 1.84million-or nine per cent of the workforce. According to the results, accountants have the longest average daily commute – 75.6 minutes – followed by IT workers at 65.6 minutes. The number of Britons spending at least three hours a day on their work commute has risen by 50 per cent. The average total daily commuting distance has dropped from 18.5 miles in 2008 to 16.7 miles-a fall of 10 per cent-as people live slightly closer to their workplaces.',
"* = Less than 0.5%. According to the survey, American workers say they spend an average of 45.6 minutes commuting to and from work in a typical day. (This includes workers who report zero minutes commuting; excluding these workers yields an average commute time of 48.1 minutes). PRINCETON, NJ -- Gallup's annual Work and Education survey finds that American workers report spending an average of 4",
]
)
# [{'corpus_id': ..., 'score': ...}, {'corpus_id': ..., 'score': ...}, ...]
NanoMSMARCO_R100, NanoNFCorpus_R100 and NanoNQ_R100CrossEncoderRerankingEvaluator with these parameters:{
"at_k": 10,
"always_rerank_positives": true
}
| Metric | NanoMSMARCO_R100 | NanoNFCorpus_R100 | NanoNQ_R100 |
|---|---|---|---|
| map | 0.5001 (+0.0105) | 0.3380 (+0.0770) | 0.5828 (+0.1632) |
| mrr@10 | 0.5023 (+0.0248) | 0.6002 (+0.1004) | 0.6077 (+0.1810) |
| ndcg@10 | 0.5741 (+0.0336) | 0.3653 (+0.0403) | 0.6469 (+0.1462) |
NanoBEIR_R100_meanCrossEncoderNanoBEIREvaluator with these parameters:{
"dataset_names": [
"msmarco",
"nfcorpus",
"nq"
],
"dataset_id": "sentence-transformers/NanoBEIR-en",
"rerank_k": 100,
"at_k": 10,
"always_rerank_positives": true
}
| Metric | Value |
|---|---|
| map | 0.4736 (+0.0836) |
| mrr@10 | 0.5701 (+0.1021) |
| ndcg@10 | 0.5288 (+0.0734) |
query, docs, and labels| query | docs | labels | |
|---|---|---|---|
| type | string | list | list |
| modality | text | ||
| details |
|
|
|
| query | docs | labels |
|---|---|---|
transcription definition biology |
['Transcription. Definition. noun. It is the process of transcribing or making a copy of genetic information stored in a DNA strand into a complementary strand of RNA (messenger RNA or mRNA) with the aid of RNA polymerases. Supplement', 'See also: RNA, protein synthesis. User Contributions / Comments: Transcription is the first step of gene expression, in which a particular segment of DNA is copied into RNA by the enzyme RNA polymerase. It is the process of transcribing or making a copy of genetic information stored in a DNA strand into a complementary strand of RNA (messenger RNA or mRNA) with the aid of RNA polymerases.', 'Transcription is the process by which genetic information from DNA is trans ferred into RNA. DNA sequence is enzymatically copied by RNA polymerase to produce a complement ary nucleotide RNA strand. Transcription and Translation. Transcription of RNA from DNA. One of the central concepts of biology is that RNA is trans cribed from DNA in a process called transcription. There are several types of RNA that can be trans cribed including mRNA, rRNA and tRNA.', 'This complex initiates transcription, and the RNA polymerase begins mRNA synthesis by matching complementary bases to the original DNA strand. The mRNA molecule is elongated and, once the strand is completely synthesized, transcription is terminated. Transcription factors can bind to specific DNA sequences called enhancer and promoter sequences in order to recruit RNA polymerase to an appropriate transcription site. Together, the transcription factors and RNA polymerase form a complex called the transcription initiation complex.', "Transcription is the first step of gene expression, in which a particular segment of DNA is copied into RNA (mRNA) by the enzyme RNA polymerase. Both RNA and DNA are nucleic acids, which use base pairs of nucleotides as a complementary language. In bacteria, transcription begins with the binding of RNA polymerase to the promoter in DNA. RNA polymerase is a core enzyme consisting of five subunits: 2 α subunits, 1 β subunit, 1 β' subunit, and 1 ω subunit.", ...] |
[1, 0, 0, 0, 0, ...] |
how to type backslash on US keyboard |
["Zacy5000 said: Or you could use 'Alt Gr + The normal US button for backslash'. Alt Gr is the one to the right hand side of the space bar and the normal US button for the backslash is next to the enter button and shift key (may slightly differ on different keyboards). This is much easier then using the Alt code. This is more for my own reference than anything else but today I was needing to enter a backslash key while using a US keyboard but with UK keyboard settings. After trying pretty much every key on the keyboard in all combinations, I realised there was no key combination that would do this directly.", "Our computers had Korean keyboards, with no obvious backslash. The solution is to use the character code. Hold down the ALT key and type 92 using the numeric keypad (not the numbers on the top of the main letters section). When you release the ALT key you'll get a backslash. The same trick can be used for accented characters such as e (é alt) 130 or (E ë). Alt · 137 neil 4. years ago", "When using windows auth usernames usually contain a backslash \, I can't type it, when I do the textbox (or textarea) just loose focus, and no backslash is added. I tried switching to input mode, but it doesn't help. I'm using: 1 Vimum 1.30. 2 Chrome 15.0.874.121. 3 Windows 7. 4 Spanish Latin Keyboard. ", 'Alternatively referred to as a backward slash and reverse solidus, the backslash is a character \ first introduced by Bob Bemer in 1960. A backslash can be used to represent a file path in MS-DOS and Windows, for example, c:\windows is an example of the backslash being used. ', "3. I'm trying to use a UK keymap on a physical US keyboard on my notebook (Asus Zenbook UX31E). My keyboard has vertical bar and backslash ( |
and \) above the Enter key, but I get hash and tilde instead. On UK keyboards, pipe and backslash seem to be just to the left of the Z key. I use a European keyboard and have only a forward-slash / . Using the alt to the right of the space bar (alt gr) together with the key for / gives |
how many oz in a shot |
['(*) A shotglass is usually 1.5 ounces, but sometimes 2 ounces with a measuring line at 1.5 ounces. You can also buy (in US) short shot glasses or pony shots which are 1 ounce. Pony shots are usually used with martinis, manhattans, and rob roys.', 'In the US, a shot is 1.5 ounces and a small shot is 1 ounce of liquor for an alcoholic beverage such as whiskey. However, this varies internationally and there is no absolutely defined unit, and various sizes of glasses are used.', 'Other shot glass sizes are called short shot glasses or pony shots both of which are 1 ounce. Alcoholism experts define a standard drink as 12 ounces of beer, 1.5 ounces of 72-proof distilled spirits, or 5 ounces of wine, all of which contain approximately .54 ounces of alcohol.', 'Since a shot is typically a spirit with 40 percent alcohol, this makes the shot 1.5 oz. or 42.62 mL (though many establishments serve a standard drink of 1 oz). A double shot in North America may be either 2.5 or 3 fluid ounces.', 'Using a standard 1.5 ounce shot glass filled to the brim results in the following number of standard drinks: 1 1.5 ounces of 72-proof = 1 standard drink. 2 1.5 ounces of 80-proof = 1.2 standard drinks. 3 1.5 ounces of 100-proof = 1.5', ...] |
[1, 0, 0, 0, 0, ...] |
ListMLELoss with these parameters:{
"activation_fn": "torch.nn.modules.linear.Identity",
"mini_batch_size": 16,
"respect_input_order": true
}
query, docs, and labels| query | docs | labels | |
|---|---|---|---|
| type | string | list | list |
| modality | text | ||
| details |
|
|
|
| query | docs | labels |
|---|---|---|
average daily commute |
['The average daily commute is about 25 minutes. By Heather Huhman. + More. Heather R. Huhman With the average daily U.S. commute at about 25 minutes, many workers are spending at least an hour traveling each day to and from work. For some densely populated cities, such as Chicago or New York, this average is 30 to 35 minutes, sometimes more. Heather R. Huhman.', "About 8% of workers in the USA commute an hour or longer; 4.3% have it much easier because they work from home. A quick look at the highs and lows of commuting: Source: Census Bureau's American Community Survey estimates, 2011 data. The average travel time for workers who commute by public transportation is higher than that of workers who use other modes, said Census Bureau statistician Brian McKenzie. For some workers, using transit is a necessity, but others simply choose a longer travel time over sitting in traffic..", "Americans' commutes aren't getting longer. The national average, one-way daily commute is 25.5 minutes, and 4.3% of the nation's workers work from home. The average travel time for workers who commute by public transportation is higher than that of workers who use other modes, said Census Bureau statistician Brian McKenzie. For some workers, using transit is a necessity, but others simply choose a longer travel time over sitting in traffic..", 'But the number spending a total of three hours or more travelling has risen to 1.84million-or nine per cent of the workforce. According to the results, accountants have the longest average daily commute – 75.6 minutes – followed by IT workers at 65.6 minutes. The number of Britons spending at least three hours a day on their work commute has risen by 50 per cent. The average total daily commuting distance has dropped from 18.5 miles in 2008 to 16.7 miles-a fall of 10 per cent-as people live slightly closer to their workplaces.', "* = Less than 0.5%. According to the survey, American workers say they spend an average of 45.6 minutes commuting to and from work in a typical day. (This includes workers who report zero minutes commuting; excluding these workers yields an average commute time of 48.1 minutes). PRINCETON, NJ -- Gallup's annual Work and Education survey finds that American workers report spending an average of 4", ...] |
[1, 0, 0, 0, 0, ...] |
should hulu charge fee for service |
['Hulu is going to charge for their services, which is their right. However Hulu told the public, [Hulu] think[s] what [they] need to do is deliver [their] content to consumers in a way where they will appreciate the value.. I am assured the public already greatly appreciate the value of their service. If hulu begins to charge: I will upgrade my tivo, get back to Netflix, and probably read more. Seem like a pretty thin attempt at padding the bottom line. Maybe the entertainment bubble has burst and the industry should stop paying actors ten million dollars per movie or 1 million dollars per episode.', 'Price : Netflix subscriptions currently cost $7.99 per month, but that price will rise by $1 or $2 for new members later this quarter. Existing members will keep their current price for a generous period of time. Assuming the $2 increase, Netflix will soon cost $119.88 per year.', "Hulu Plus is the subscription based big brother to Hulu's free video streaming platform. It costs $7.99 a month, and really does open up the catalog of available titles. In fact, for subscribers, there are many shows that have the complete catalog of episodes from every season. ", 'You can try out the service for a one-month free trial, after which you have to fork up $79. But if you don’t want the service, you can opt out of it at no charge. Since Amazon uses a yearly subscription model, you will be charged an early termination fee if you want to suddenly cancel your subscription. Hulu Plus. Netflix. For $7.99, Netflix subscribers get to enjoy video on demand streaming on two devices. The new Family plan that costs $11.99, entitles you to on-demand streaming on four devices simultaneously. What this means is that four people can watch four different shows at the same time, on four different device', 'When Google starts paying for my hulu, Netflix or Amazon prime, I will change to them. :). Netflix service runs $8.99 per month — which comes out to $107.88 a year — while Amazon Prime is $99 per year. Hulu Plus is $7.99 a month, for the year that equals 95.88. 1 Amazon Prime charges $99 per year for a membership (which equals $8.25 per month), making it very similar to the above options in terms of price. 2 You also get additional benefits including free two-day shipping for purchases made on Amazon.com.', ...] |
[1, 0, 0, 0, 0, ...] |
when are the newsboys playing at the state fair |
["See NewsBoys at the NC State Fair. HIS Radio is your Host Station for this year's Christian concert night at the NC State Fair. We're happy to welcome the NewsBoys back to the Triangle...at Dorton Arena on Friday night, Oct. 24th. Tickets to this show are SOLD OUT! The ONLY place you may still obtain tickets is here on HIS Radio, but we're not selling them.", 'Please try again later. newsboys play jesus freak at the state fair of wv. duncan phillips on drums plays rotating drums, awesome! all rights reserved to Newsboys. Category. License.', 'The NEWSBOYS will be appearing at the Nebraska State Fair on Thursday, September 3, at 7:30pm. Tickets are on sale now for a $6 convenience fee plus gate at Etix.com or at the Heartland Events Center Box Office in Grand Island. Fan Club premier packages are also available for $30 plus gate and fees.', "One of Christian rock's most enduring acts, the Newsboys will appear at the Nebraska State Fair in 2015."] |
[1, 0, 0, 0] |
ListMLELoss with these parameters:{
"activation_fn": "torch.nn.modules.linear.Identity",
"mini_batch_size": 16,
"respect_input_order": true
}
per_device_train_batch_size: 16num_train_epochs: 1learning_rate: 2e-05warmup_steps: 0.1bf16: Trueper_device_eval_batch_size: 16load_best_model_at_end: Trueseed: 12per_device_train_batch_size: 16num_train_epochs: 1max_steps: -1learning_rate: 2e-05lr_scheduler_type: linearlr_scheduler_kwargs: Nonewarmup_steps: 0.1optim: adamw_torch_fusedoptim_args: Noneweight_decay: 0.0adam_beta1: 0.9adam_beta2: 0.999adam_epsilon: 1e-08optim_target_modules: Nonegradient_accumulation_steps: 1average_tokens_across_devices: Truemax_grad_norm: 1.0label_smoothing_factor: 0.0bf16: Truefp16: Falsebf16_full_eval: Falsefp16_full_eval: Falsetf32: Nonegradient_checkpointing: Falsegradient_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: Nonetrackio_bucket_id: Nonetrackio_static_space_id: Noneper_device_eval_batch_size: 16prediction_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: 12data_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_static_graph: Noneddp_backend: Noneddp_timeout: 1800fsdp: Nonefsdp_config: Nonedeepspeed: 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 | NanoMSMARCO_R100_ndcg@10 | NanoNFCorpus_R100_ndcg@10 | NanoNQ_R100_ndcg@10 | NanoBEIR_R100_mean_ndcg@10 |
|---|---|---|---|---|---|---|---|
| -1 | -1 | - | - | 0.0300 (-0.5104) | 0.2528 (-0.0723) | 0.0168 (-0.4839) | 0.0999 (-0.3555) |
| 0.0002 | 1 | 9.7917 | - | - | - | - | - |
| 0.0508 | 250 | 11.1796 | - | - | - | - | - |
| 0.1016 | 500 | 11.2528 | 10.9935 | 0.1502 (-0.3902) | 0.2257 (-0.0994) | 0.3526 (-0.1481) | 0.2428 (-0.2125) |
| 0.1525 | 750 | 11.1430 | - | - | - | - | - |
| 0.2033 | 1000 | 11.1284 | 10.9439 | 0.4182 (-0.1222) | 0.2957 (-0.0294) | 0.4354 (-0.0652) | 0.3831 (-0.0723) |
| 0.2541 | 1250 | 11.1968 | - | - | - | - | - |
| 0.3049 | 1500 | 11.1426 | 10.9410 | 0.4957 (-0.0447) | 0.3398 (+0.0147) | 0.5718 (+0.0711) | 0.4691 (+0.0137) |
| 0.3558 | 1750 | 11.0671 | - | - | - | - | - |
| 0.4066 | 2000 | 11.0203 | 10.9226 | 0.4771 (-0.0634) | 0.3850 (+0.0599) | 0.5368 (+0.0362) | 0.4663 (+0.0109) |
| 0.4574 | 2250 | 11.1765 | - | - | - | - | - |
| 0.5082 | 2500 | 11.1681 | 10.9144 | 0.5066 (-0.0338) | 0.3769 (+0.0519) | 0.5878 (+0.0872) | 0.4904 (+0.0351) |
| 0.5591 | 2750 | 11.1482 | - | - | - | - | - |
| 0.6099 | 3000 | 11.1399 | 10.9128 | 0.5431 (+0.0027) | 0.3668 (+0.0418) | 0.6001 (+0.0995) | 0.5033 (+0.0480) |
| 0.6607 | 3250 | 11.1925 | - | - | - | - | - |
| 0.7115 | 3500 | 11.1626 | 10.9065 | 0.5381 (-0.0024) | 0.3740 (+0.0489) | 0.5965 (+0.0958) | 0.5028 (+0.0475) |
| 0.7624 | 3750 | 11.0903 | - | - | - | - | - |
| 0.8132 | 4000 | 11.1357 | 10.9113 | 0.5293 (-0.0112) | 0.3701 (+0.0450) | 0.6016 (+0.1010) | 0.5003 (+0.0450) |
| 0.8640 | 4250 | 11.0999 | - | - | - | - | - |
| 0.9148 | 4500 | 11.2284 | 10.9031 | 0.5741 (+0.0336) | 0.3653 (+0.0403) | 0.6469 (+0.1462) | 0.5288 (+0.0734) |
| 0.9656 | 4750 | 11.1345 | - | - | - | - | - |
| 1.0 | 4919 | - | 10.9030 | 0.5600 (+0.0196) | 0.3610 (+0.0360) | 0.6362 (+0.1356) | 0.5191 (+0.0637) |
| -1 | -1 | - | - | 0.5741 (+0.0336) | 0.3653 (+0.0403) | 0.6469 (+0.1462) | 0.5288 (+0.0734) |
@inproceedings{reimers-2019-sentence-bert,
title = "Sentence-BERT: Sentence Embeddings using Siamese BERT-Networks",
author = "Reimers, Nils and Gurevych, Iryna",
booktitle = "Proceedings of the 2019 Conference on Empirical Methods in Natural Language Processing",
month = "11",
year = "2019",
publisher = "Association for Computational Linguistics",
url = "https://arxiv.org/abs/1908.10084",
}
@inproceedings{10.1145/1390156.1390306,
title = {Listwise Approach to Learning to Rank - Theory and Algorithm},
author = {Xia, Fen and Liu, Tie-Yan and Wang, Jue and Zhang, Wensheng and Li, Hang},
booktitle = {Proceedings of the 25th International Conference on Machine Learning},
pages = {1192-1199},
year = {2008},
url = {https://doi.org/10.1145/1390156.1390306},
}
Base model
microsoft/MiniLM-L12-H384-uncased