text stringlengths 13 30k |
|---|
{"text": "\t\t<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0, user-scalable=no\" />"} |
{"text": "\t\t<meta property=\"fb:app_id\" content=\"1321688464574422\" />"} |
{"text": "\t\t<meta name=\"twitter:card\" content=\"summary_large_image\" />"} |
{"text": "\t\t<meta name=\"twitter:site\" content=\"@huggingface\" />"} |
{"translation": {"en": "3 Enjoy a delicious buffet dinner and dance late into the night among zombies, skeletons and pumpkins", "it": "3 Per gustare una sfiziosa cena a buffet e ballare fino a tarda notte tra zombi, scheletri e zucche"}} |
{"translation": {"en": "It is not for humans in general.", "it": "E non gli esseri umani in generale."}} |
{"translation": {"en": "Chief Executive magazine interviewed a number of senior leaders who have an extraordinary commitment to communicating with employees and modeling what they want from them.", "it": "La rivista Chief Executive ha intervistato diversi leader esperti, che dimostrano un impegno straordinario nelle co... |
{"translation": {"en": "Also on Itunes!", "it": "Ovviamente su iTunes!"}} |
{"translation": {"en": "Did you know there are apps to remind you to take naps?", "it": "Lo sapevi che esistono delle app che ti ricordano di bere?"}} |
{"text": "xxx\n", "meta": {"pile_set_name": "Github"}, "score": 0.25} |
{"text": "Go Dick.", "meta": {"pile_set_name": "Enron Emails"}, "score": 0.125} |
{"text": "xxx\r\njkl", "meta": {"pile_set_name": "Github"}, "score": 0.125} |
{"text": "ddir = 'xx'\n", "meta": {"pile_set_name": "Github"}, "score": 0.08333333333333333} |
{"text": "Wife does anal sex her ass looks so nice", "meta": {"pile_set_name": "OpenWebText2"}, "score": 0.075} |
{"text": "British busty tit wank Porn Videos\n\nAll the best busty tit wank British Porn videos from all over the world featuring charming sexy beauties who ready to do anything for busty tit wank sex movies. On the busty tit wank search on Free British Porn Tube.", "meta": {"pile_set_name": "Pile-CC"}, "score": 0.0674... |
{"_data_files": [{"filename": "dataset.arrow"}], "_fingerprint": "efea91e2db9b0b2d", "_format_columns": null, "_format_kwargs": {}, "_format_type": null, "_indexes": {}, "_output_all_columns": false, "_split": null} |
{"label": "Anti-assignment", "text": "Neither Party shall be entitled to cede, or delegate its rights and obligations arising from this AGREEMENT or to assign this AGREEMENT to any other person or entity without the prior written consent of the other party provided that either party shall be entitled to assign th... |
{"label": "Anti-assignment", "text": "This Agreement shall automatically terminate in the event the Management Agreement is assigned or otherwise terminated."} |
{"label": "Anti-assignment", "text": "\nbusiness and assets of the party regardless of how the transaction or series of related transactions is structured, provided, that the successor party agrees to be bound by all of the terms and conditions of this Agreement; and (b) Sponsor may assign its rights and obligations un... |
{"label": "Anti-assignment", "text": "Bachem shall not assign, subcontract or delegate any of its rights or obligations under this Agreement without the express prior written authorization of Magenta, provided however, that Bachem may subcontract its rights and obligations hereunder to those subcontractors identified a... |
{"label": "Anti-assignment", "text": "This Agreement may not be assigned by Tickets without MP3.com's written consent, which shall be promptly granted or denied and not unreasonably withheld, except that Tickets may assign this Agreement without MP3.com's consent if another entity acquires substantially all the assets ... |
{"text": "Stimulus discrimination and generalisation constitute two major abilities exhibited by most living animals. Discrimination allows treating different signals as distinct, while generalisation allows treating different but similar stimuli as equivalents [1,2,3]. Similarity along one or several perceptual dimens... |
{"text": "Recently, optical imaging studies facilitated our understanding of how olfactory stimuli are detected and processed in the bee brain [22,23,24,25,26]. The first relay of the bee's olfactory system involves the ALs, which receive sensory input from the olfactory receptor neurons of the antennae within a number... |
{"text": "2, 4064 = 2215.50, p < 0.001) and a significant heterogeneity among odours (F"} |
{"text": "15, 2032 = 8.80, p < 0.001). Responses to the CS in the last conditioning trial reached a level of approximately 70% for primary and secondary alcohols, 80% for aldehydes, and 61% for ketones."} |
{"text": "3, 508 = 0.18, p > 0.05; secondary alcohols: F"} |
{"signature": "def pairwise(iterable):", "body": "a, b = tee(iterable)<EOL>next(b, None)<EOL>return zip(a, b)<EOL>", "docstring": "s -> (s0,s1), (s1,s2), (s2, s3), ...", "id": "f3:m0"} |
{"signature": "def score_meaning(text):", "body": "<EOL>all_characters = re.findall('<STR_LIT>', text) <EOL>if len(all_characters) == <NUM_LIT:0>:<EOL><INDENT>return <NUM_LIT:0><EOL><DEDENT>repetition_count = Counter(all_characters)<EOL>score = (len(all_characters)) ** <NUM_LIT:2> / (len(repetition_count) + len(text) ... |
{"signature": "def get_top_n_meanings(strings, n):", "body": "scored_strings = [(s, score_meaning(s)) for s in strings]<EOL>scored_strings.sort(key=lambda tup: -tup[<NUM_LIT:1>])<EOL>return scored_strings[:n]<EOL>", "docstring": "Returns (text, score) for top n strings", "id": "f11:m1"} |
{"signature": "def _make_methods():", "body": "for k, v in PokeAPI().get_endpoints().items():<EOL><INDENT>string = \"<STR_LIT>\"<EOL>string += (\"<STR_LIT>\"<EOL>.format(k.replace('<STR_LIT:->', '<STR_LIT:_>')) + '<STR_LIT>')<EOL>string += (\"<STR_LIT>\" +<EOL>\"<STR_LIT>\")<EOL>string += \"<STR_LIT>\".format(v.split('... |
{"signature": "def path(self, name):", "body": "return self.url<EOL>", "docstring": "Returns a local filesystem path where the file can be retrieved using\nPython's built-in open() function. Storage systems that can't be\naccessed using open() should *not* implement this method.", "id": "f19:c1:m1"} |
{"signature": "def open(self, name, mode='<STR_LIT:rb>'):", "body": "self.request = urlopen(self.url)<EOL>if self.algorithm:<EOL><INDENT>self.hash = hashlib.new(self.algorithm)<EOL><DEDENT>return self<EOL>", "docstring": "Retrieves the specified file from storage.", "id": "f19:c1:m2"} |
{"signature": "def list(self, ignore_patterns):", "body": "return six.iteritems(self.firsts)<EOL>", "docstring": "List all files in all storages.", "id": "f19:c2:m2"} |
{"signature": "def find(self, path, all=False):", "body": "found = os.path.join(settings.STATIC_ROOT, path)<EOL>if all:<EOL><INDENT>return [found]<EOL><DEDENT>else:<EOL><INDENT>return found<EOL><DEDENT>", "docstring": "Looks for files in the app directories.", "id": "f19:c2:m3"} |
{"signature": "def give_unexpected_calls(method_calls, expected_methods_names):", "body": "return [call for call in method_calls<EOL>if call[<NUM_LIT:0>] not in expected_methods_names]<EOL>", "docstring": "TODO: Move this to a common test utils module.", "id": "f28:m4"} |
{"signature": "@classmethod<EOL><INDENT>def _unwrap_func(cls, decorated_func):<DEDENT>", "body": "if click is not None:<EOL><INDENT>if isinstance(decorated_func, click.Command):<EOL><INDENT>return cls._unwrap_func(decorated_func.callback)<EOL><DEDENT><DEDENT>if hasattr(decorated_func, '<STR_LIT>'):<EOL><INDENT>return c... |
{"Unnamed: 0": 2, "sentence": "Upto freebets lol gunners matchedbetting c racing cheltenhamfestival", "labels": 1} |
{"Unnamed: 0": 4, "sentence": "Leon bailey or Federico cheisa", "labels": 1} |
{"url": "https://api.github.com/repos/huggingface/datasets/issues/4773", "repository_url": "https://api.github.com/repos/huggingface/datasets", "labels_url": "https://api.github.com/repos/huggingface/datasets/issues/4773/labels{/name}", "comments_url": "https://api.github.com/repos/huggingface/datasets/issues/4773/comm... |
{"url": "https://api.github.com/repos/huggingface/datasets/issues/4772", "repository_url": "https://api.github.com/repos/huggingface/datasets", "labels_url": "https://api.github.com/repos/huggingface/datasets/issues/4772/labels{/name}", "comments_url": "https://api.github.com/repos/huggingface/datasets/issues/4772/comm... |
{"url": "https://api.github.com/repos/huggingface/datasets/issues/4771", "repository_url": "https://api.github.com/repos/huggingface/datasets", "labels_url": "https://api.github.com/repos/huggingface/datasets/issues/4771/labels{/name}", "comments_url": "https://api.github.com/repos/huggingface/datasets/issues/4771/comm... |
{"url": "https://api.github.com/repos/huggingface/datasets/issues/4770", "repository_url": "https://api.github.com/repos/huggingface/datasets", "labels_url": "https://api.github.com/repos/huggingface/datasets/issues/4770/labels{/name}", "comments_url": "https://api.github.com/repos/huggingface/datasets/issues/4770/comm... |
{"url": "https://api.github.com/repos/huggingface/datasets/issues/4769", "repository_url": "https://api.github.com/repos/huggingface/datasets", "labels_url": "https://api.github.com/repos/huggingface/datasets/issues/4769/labels{/name}", "comments_url": "https://api.github.com/repos/huggingface/datasets/issues/4769/comm... |
{"url": "https://api.github.com/repos/huggingface/datasets/issues/4768", "repository_url": "https://api.github.com/repos/huggingface/datasets", "labels_url": "https://api.github.com/repos/huggingface/datasets/issues/4768/labels{/name}", "comments_url": "https://api.github.com/repos/huggingface/datasets/issues/4768/comm... |
{"url": "https://api.github.com/repos/huggingface/datasets/issues/4767", "repository_url": "https://api.github.com/repos/huggingface/datasets", "labels_url": "https://api.github.com/repos/huggingface/datasets/issues/4767/labels{/name}", "comments_url": "https://api.github.com/repos/huggingface/datasets/issues/4767/comm... |
{"url": "https://api.github.com/repos/huggingface/datasets/issues/4766", "repository_url": "https://api.github.com/repos/huggingface/datasets", "labels_url": "https://api.github.com/repos/huggingface/datasets/issues/4766/labels{/name}", "comments_url": "https://api.github.com/repos/huggingface/datasets/issues/4766/comm... |
{"url": "https://api.github.com/repos/huggingface/datasets/issues/4765", "repository_url": "https://api.github.com/repos/huggingface/datasets", "labels_url": "https://api.github.com/repos/huggingface/datasets/issues/4765/labels{/name}", "comments_url": "https://api.github.com/repos/huggingface/datasets/issues/4765/comm... |
{"url": "https://api.github.com/repos/huggingface/datasets/issues/4764", "repository_url": "https://api.github.com/repos/huggingface/datasets", "labels_url": "https://api.github.com/repos/huggingface/datasets/issues/4764/labels{/name}", "comments_url": "https://api.github.com/repos/huggingface/datasets/issues/4764/comm... |
{"text": ["train", "this", "is", "a", "abstract"], "BIO_tags": ["BIO", "tags", "of", "abstract"]} |
{"total_bill": 16.99, "tip": 1.01, "sex": "Female", "smoker": "No", "day": "Sun", "time": "Dinner", "size": 2} |
{"total_bill": 10.34, "tip": 1.66, "sex": "Male", "smoker": "No", "day": "Sun", "time": "Dinner", "size": 3} |
{"total_bill": 21.01, "tip": 3.5, "sex": "Male", "smoker": "No", "day": "Sun", "time": "Dinner", "size": 3} |
{"total_bill": 23.68, "tip": 3.31, "sex": "Male", "smoker": "No", "day": "Sun", "time": "Dinner", "size": 2} |
{"total_bill": 24.59, "tip": 3.61, "sex": "Female", "smoker": "No", "day": "Sun", "time": "Dinner", "size": 4} |
{"total_bill": 25.29, "tip": 4.71, "sex": "Male", "smoker": "No", "day": "Sun", "time": "Dinner", "size": 4} |
{"total_bill": 8.77, "tip": 2.0, "sex": "Male", "smoker": "No", "day": "Sun", "time": "Dinner", "size": 2} |
{"total_bill": 26.88, "tip": 3.12, "sex": "Male", "smoker": "No", "day": "Sun", "time": "Dinner", "size": 4} |
{"total_bill": 15.04, "tip": 1.96, "sex": "Male", "smoker": "No", "day": "Sun", "time": "Dinner", "size": 2} |
{"total_bill": 14.78, "tip": 3.23, "sex": "Male", "smoker": "No", "day": "Sun", "time": "Dinner", "size": 2} |
{"sentence": "", "full_rel": "/a/[/r/Antonym/,/c/af/aanskakel/v/,/c/af/afskakel/]", "rel": "/r/Antonym", "arg1": "/c/af/aanskakel/v", "arg2": "/c/af/afskakel", "lang": "af", "extra_info": "{\"dataset\": \"/d/wiktionary/en\", \"license\": \"cc:by-sa/4.0\", \"sources\": [{\"contributor\": \"/s/resource/wiktionary/en\", \... |
{"sentence": "", "full_rel": "/a/[/r/Antonym/,/c/af/afgaan/v/,/c/af/opgaan/]", "rel": "/r/Antonym", "arg1": "/c/af/afgaan/v", "arg2": "/c/af/opgaan", "lang": "af", "extra_info": "{\"dataset\": \"/d/wiktionary/en\", \"license\": \"cc:by-sa/4.0\", \"sources\": [{\"contributor\": \"/s/resource/wiktionary/en\", \"process\"... |
{"sentence": "", "full_rel": "/a/[/r/Antonym/,/c/af/afskakel/v/,/c/af/aanskakel/]", "rel": "/r/Antonym", "arg1": "/c/af/afskakel/v", "arg2": "/c/af/aanskakel", "lang": "af", "extra_info": "{\"dataset\": \"/d/wiktionary/en\", \"license\": \"cc:by-sa/4.0\", \"sources\": [{\"contributor\": \"/s/resource/wiktionary/en\", \... |
{"text": "A Porthcawl RNLI crew with a medic and the coastguard search and rescue helicopter were sent to Sker Beach, near Kenfig Nature Reserve, at 12:50 GMT on Sunday.\nCrewman Chris Page said the rider had head injuries and was very cold from lying unconscious on wet sand.\nShe was treated before being flown to Card... |
{"text": "Verheydt, who had been with Maastricht since 2015, has signed a three-year contract with Harry Kewell's side.\nThe 25-year-old scored 13 goals in 43 appearances in all competitions last season.\nMeanwhile, Watford winger Dennon Lewis, 20, has joined the Reds on a loan deal until 31 December.\nLewis, who made ... |
{"text": "The 32-year-old had been playing in the Isthmian Premier Division with Leatherhead following his release by Newport at the end of last season.\nPidgeley has made 260 appearances in spells with nine clubs, including Chelsea, Watford and Millwall.\nForest Green are currently second in the National League table,... |
{"text": "The suspected green mamba was found on a ship that had docked in Aberdeen from west Africa last month.\nThe snake died after it was placed in a freezer by the animal charity after attempts to rehome it with specialist reptile keepers failed.\nThe snake was later identified as a harmless green tree snake.\nPol... |
{"text": "The all-rounder has been included in the T20 squad to face Sri Lanka on 5 July at the Ageas Bowl, having been part of the World T20 squad in March.\n\"It's nice to be involved again,\" the 26-year-old slow left-armer and right-handed batsman told BBC Radio Solent.\n\"I wasn't expecting to be as I thought Moee... |
{"text": "The Egypt-backed plan had envisaged a regional forum which analysts say might have forced Israel to reveal whether or not it has nuclear weapons.\nThe proposal was blocked by the US, the UK and Canada. The next review is set for 2020.\nIsrael neither confirms nor denies it has a stockpile of nuclear weapons.... |
{"text": "Mothers-to-be are more likely to get malaria as their immunity is lowered, says the Royal College of Obstetricians and Gynaecologists (RCOG).\nMalaria carries serious risks for mother and baby including miscarriage, stillbirth and premature labour.\nThe tropical disease is transmitted by mosquitoes and causes... |
{"text": "Researchers at the University of Sheffield said the tumours were effectively \"fertilising\" the bone to help themselves grow.\nThe study, in the journal Nature, said it may be possible to protect bone from a tumour's nefarious influence and consequently stop the cancer's spread.\nCancer charities said this o... |
{"text": "Maybe its all down to the thought of her\nMaybe its all down to the loss we learned\nKnew for a long time, for all its worth\nI wanted to run to you\nWhat if Im caught up and its me youre calling?\nWhat if Im lost now cause of demons comin\nWhen she kissed me, I felt a new freedom or something\nWell, move on\... |
{"text": "I wanna be king in your story\nI wanna know who you are\nI want your heart to beat for me\nOh, I\nWant you to sing to me softly\nCause then Im outrunning the dark\nThats all that love ever taught me\nOh, I\nCall and Ill rush out\nAll out of breath now\nYouve got that power over me, my my\nEverything I hold de... |
{"text": "For all the moments never known\nCause he stepped off of the tallest sail\nFor all the love hed left below in the waves\nHe made his peace with letting go\nSaid some things hed never dared to say\nThe one the lighthouse left alone, never saved\nTil set of eyes had pinned him\nBecame his version of a kingdom\n... |
{"text": "When love was found\nI kept my hope just like Id hoped to\nThen sang to the sea for feelings deep blue\nAnd coming down\nAnd weve had problems that weve grown through\nBut I bet you dream of what you could do\nAt seventeen, I was alright\nWas like nothing I could feel inside\nAnd wishing you were here tonight... |
{"text": "Keeping her bright eyes focused on the coastline, waiting for you\nIsnt she all of us pining for that last kiss\nA permanent truth, a means to get through\nMaybe well cry whilst hopeful when we think about the past being cruel\nGot a thought for those who start to think of love\nAs the pursuit of a fool, its ... |
{"text": "Dont tell me this is all for nothin\nI can only tell you one thing\nOn the nights you feel outnumbered\nBaby, Ill be out there somewhere\nI see everything you can be\nI see the beauty that you cant see\nOn the nights you feel outnumbered\nBaby, Ill be out there somewhere\nI couldve showed you all the scars at... |
{"text": "A thief in the night came\nTook everything you gave for her\nThis song isnt low, lady\nIts remembering love made in the summer\nBut I think of the things that it taught me\nI learned that theres beauty I cant keep\nLearned that theres demons in stories\nLetting her down, no, I wont be\nWhenever shes calling, ... |
{"text": "You call arrows to fall short\nBecause the snow is at our feet\nAnd when embraces subside, and the lilies have died\nIt comes down to her tears on a sheet\nBut its alright because\nYou cause lanterns to light\nAnd force demons disperse\nAnd if Lucifer may fear the swift drying of tears\nThen, for evil, you co... |
{"text": "How it must feel to be a bird\nRoamin lonely oversea air\nHow it must feel to be a bird\nLondon, Paris, underneath\nAnd Ill wait on my own\nAnd I couldnt tell you enough that Im sorry\nAnd no, you couldnt tell me enough that you love me\nBut shes bringin the moon and stars to me\nDamn permanent reverie\nAnd e... |
{"context": "The Yuan undertook extensive public works. Among Kublai Khan's top engineers and scientists was the astronomer Guo Shoujing, who was tasked with many public works projects and helped the Yuan reform the lunisolar calendar to provide an accuracy of 365.2425 days of the year, which was only 26 seconds off th... |
{"context": "The Taliban were spawned by the thousands of madrasahs the Deobandi movement established for impoverished Afghan refugees and supported by governmental and religious groups in neighboring Pakistan. The Taliban differed from other Islamist movements to the point where they might be more properly described a... |
{"context": "Virtually all nuclear power plants generate electricity by heating water to provide steam that drives a turbine connected to an electrical generator. Nuclear-powered ships and submarines either use a steam turbine directly for main propulsion, with generators providing auxiliary power, or else employ turbo... |
{"context": "Harvard's 209-acre (85 ha) main campus is centered on Harvard Yard in Cambridge, about 3 miles (5 km) west-northwest of the State House in downtown Boston, and extends into the surrounding Harvard Square neighborhood. Harvard Yard itself contains the central administrative offices and main libraries of the... |
{"context": "All of these processes do not necessarily occur in a single environment, and do not necessarily occur in a single order. The Hawaiian Islands, for example, consist almost entirely of layered basaltic lava flows. The sedimentary sequences of the mid-continental United States and the Grand Canyon in the sout... |
{"context": "Cultural imperialism is when a country's influence is felt in social and cultural circles, i.e. its soft power, such that it changes the moral, cultural and societal worldview of another. This is more than just \"foreign\" music, television or film becoming popular with young people, but that popular cultu... |
{"context": "One of the claimants of the English throne opposing William the Conqueror, Edgar Atheling, eventually fled to Scotland. King Malcolm III of Scotland married Edgar's sister Margaret, and came into opposition to William who had already disputed Scotland's southern borders. William invaded Scotland in 1072, r... |
{"context": "Between Bingen and Bonn, the Middle Rhine flows through the Rhine Gorge, a formation which was created by erosion. The rate of erosion equaled the uplift in the region, such that the river was left at about its original level while the surrounding lands raised. The gorge is quite deep and is the stretch of... |
{"text1": "Myanmar 's pro-democracy leader Aung San Suu Kyi will return home late Friday but will remain in detention after recovering from surgery at a Yangon hospital , her personal physician said .", "text2": "Myanmar 's pro-democracy leader Aung San Suu Kyi will be kept under house arrest following her release from... |
{"text1": "Robert Walsh , 40 , remained in critical but stable condition Friday at Staten Island University Hospital 's north campus .", "text2": "Walsh , also 40 , was in critical but stable condition at Staten Island University Hospital last night .", "target": 0, "feat_idx": 974, "evaluation_predictions": [-1.346679... |
{"text1": "In fiction : Edward P. Jones ( \" The Known World \" ) and Scott Spencer ( \" A Ship Made of Paper \" ) .", "text2": "The fifth nominee for fiction is Scott Spencer , for A Ship Made of Paper .", "target": 1, "feat_idx": 1305, "evaluation_predictions": [-0.2203369140625, 0.107666015625]} |
{"text1": "Because of the accounting charge , the company now says it lost $ 1.04 billion , or 32 cents a share , in the quarter ended June 30 .", "text2": "Including the charge , the Santa Clara , Calif.-based company said Monday it lost $ 1.04 billion , or 32 cents per share , in the period ending June 30 .", "target... |
{"text1": "The top rate will go to 4.45 percent for all residents with taxable incomes above $ 500,000 .", "text2": "For residents with incomes above $ 500,000 , the income-tax rate will increase to 4.45 percent .", "target": 0, "feat_idx": 73, "evaluation_predictions": [-1.4853515625, 1.298828125]} |
{"text1": "The S & P / TSX composite rose 87.74 points on the week , while the TSX Venture Exchange composite gained 44.49 points .", "text2": "On the week , the Dow Jones industrial average rose 11.56 points , while the Nasdaq Stock Market gained 39.42 points .", "target": 1, "feat_idx": 4049, "evaluation_predictions"... |
{"text1": "Nearly 300 mutinous troops who seized a Manila shopping and apartment complex demanding the government resign gave up and retreated peacefully after some 19 hours .", "text2": "Mutinous troops who seized a Manila shopping and apartment complex demanding the government resign ended a 19-hour standoff late Sun... |
{"text1": "\" Jeremy 's a good guy , \" Barber said , adding : \" Jeremy is living the dream life of the New York athlete .", "text2": "He also said Shockey is \" living the dream life of a New York athlete .", "target": 1, "feat_idx": 416, "evaluation_predictions": [-0.145263671875, 0.031341552734375]} |
{"text1": "Carlson on Tuesday said he would not recuse himself from the case .", "text2": "Service officials said Carlson refused to recuse himself from the case .", "target": 0, "feat_idx": 686, "evaluation_predictions": [-1.5, 1.4736328125]} |
{"text1": "At community colleges , tuition will jump to $ 2,800 from $ 2,500 .", "text2": "Community college students will see their tuition rise by $ 300 to $ 2,800 or 12 percent .", "target": 0, "feat_idx": 366, "evaluation_predictions": [-1.0126953125, 0.8017578125]} |
{"it is good": "ss is nice", "1": 1} |
{"it is good": "who is bad", "1": 0} |
{"it is good": "he is ugly", "1": 0} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.