text stringlengths 13 30k |
|---|
{"text": "We truncate the approach of Tsoukas (1991) for this article, in order to conceptualise an analogous conceptual model of an EE. We first interpret an analogous conceptual model and then examine that model through a realist framing. Our intent is to propose a theoretical re-framing of the EE that portrays new a... |
{"context": "Provided is a universal Ku band LNB (9.75/10.600 GHz) which is fitted at the end of the dish and pointed at the correct satellite constellation; most digital receivers will receive the free to air channels. Some broadcasts are free-to-air and unencrypted, some are encrypted but do not require a monthly sub... |
{"context": "At the beginning of the 20th century, important advancement in geological science was facilitated by the ability to obtain accurate absolute dates to geologic events using radioactive isotopes and other methods. This changed the understanding of geologic time. Previously, geologists could only use fossils ... |
{"context": "Packet mode communication may be implemented with or without intermediate forwarding nodes (packet switches or routers). Packets are normally forwarded by intermediate network nodes asynchronously using first-in, first-out buffering, but may be forwarded according to some scheduling discipline for fair que... |
{"context": "Many complexity classes are defined using the concept of a reduction. A reduction is a transformation of one problem into another problem. It captures the informal notion of a problem being at least as difficult as another problem. For instance, if a problem X can be solved using an algorithm for Y, X is n... |
{"context": "In 1096, Crusaders passing by the siege of Amalfi were joined by Bohemond of Taranto and his nephew Tancred with an army of Italo-Normans. Bohemond was the de facto leader of the Crusade during its passage through Asia Minor. After the successful Siege of Antioch in 1097, Bohemond began carving out an inde... |
{"context": "In October 2010, the open-access scientific journal PLoS Pathogens published a paper by a multinational team who undertook a new investigation into the role of Yersinia pestis in the Black Death following the disputed identification by Drancourt and Raoult in 1998. They assessed the presence of DNA/RNA wit... |
{"docid": "2", "text": "God at Sinai granted Aaron the priesthood for himself and his male descendants, and he became the first High Priest of the Israelites. Aaron died before the Israelites crossed the North Jordan river and he was buried on Mount Hor (Numbers 33:39; Deuteronomy 10:6 says he died and was buried at Mo... |
{"docid": "3", "text": "his rod turn into a snake. Then he stretched out his rod in order to bring on the first three plagues. After that, Moses tended to act and speak for himself. During the journey in the wilderness, Aaron was not always prominent or active. At the battle with Amalek, he was chosen with Hur to suppo... |
{"docid": "4", "text": "however, Aaron and Hur remained below to look after the people. From here on in Exodus, Leviticus and Numbers, Joshua appears in the role of Moses' assistant while Aaron functions instead as the first high priest. The books of Exodus, Leviticus and Numbers maintain that Aaron received from God a... |
{"docid": "5", "text": "Aaron and his sons to the priesthood, and arrayed them in the robes of office (Leviticus 8; cf. Exodus 28-29). He also related to them God's detailed instructions for performing their duties while the rest of the Israelites listened (Leviticus 1-7, 11-27). Aaron and his successors as high priest... |
{"docid": "6", "text": "priests were also commissioned to bless the people (Numbers 6:22-27). When Aaron completed the altar offerings for the first time and, with Moses, \"blessed the people: and the glory of the appeared unto all the people: And there came a fire out from before the , and consumed upon the altar the ... |
{"docid": "7", "text": "in literature dating to the Babylonian captivity and later. The books of Judges, Samuel and Kings mention priests and Levites, but do not mention the Aaronides in particular. The Book of Ezekiel, which devotes much attention to priestly matters, calls the priestly upper class the Zadokites after... |
{"docid": "8", "text": "priests claiming Aaronide descent dominated the Second Temple period. Most scholars think the Torah reached its final form early in this period, which may account for Aaron's prominence in Exodus, Leviticus and Numbers. Aaron plays a leading role in several stories of conflicts during Israel's w... |
{"docid": "9", "text": "(Exodus 32:25-35). Aaron, however, escaped punishment for his role in the affair, because of the intercession of Moses according to Deuteronomy 9:20. Later retellings of this story almost always excuse Aaron for his role. For example, in rabbinic sources and in the Quran, Aaron was not the idol-... |
{"docid": "10", "text": "families some time in Israel's past. Others argue that the story simply shows what can happen if the priests do not follow God's instructions given through Moses. The Torah generally depicts the siblings, Moses, Aaron, and Miriam, as the leaders of Israel after the Exodus, a view also reflected... |
{"code1": "MOD = 1000000007\ndef fast_power(base, power):\n \"\"\"\n Returns the result of a^b i.e. a**b\n We assume that a >= 1 and b >= 0\n\n Remember two things!\n - Divide power by 2 and multiply base to itself (if the power is even)\n - Decrement power by 1 to make it even and then follow the f... |
{"code1": "n = int(input())\n\nadded_strings = set()\nfor i in range(n):\n com, s = input().split()\n if com == 'insert':\n added_strings.add(s)\n elif com == 'find':\n print('yes' if (s in added_strings) else 'no')\n", "code2": "def triangle(N, Ls):\n result = 0\n res = []\n numbers = {}\n e... |
{"code1": "str = input()\nn = int(input())\n\nfor i in range(n):\n args = input().split()\n command = args[0]\n s = int(args[1])\n e = int(args[2])\n if command == 'print':\n print(str[s:e + 1])\n if command == 'reverse':\n str = str[0:s] + str[s:e + 1][::-1] + str[e + 1:]\n if comman... |
{"code1": "import sys\nA = \"1, 1, 1, 2, 1, 2, 1, 5, 2, 2, 1, 5, 1, 2, 1, 14, 1, 5, 1, 5, 2, 2, 1, 15, 2, 2, 5, 4, 1, 4, 1, 51\".split(\", \")\n\nN = int(sys.stdin.readline().rstrip())\n\nprint(A[N-1])\n", "code2": "#coding: utf-8\n#itp1_9d\n\ndef rev(s,a,b):\n b=b+1\n t=s[a:b]\n u=t[::-1]\n x=s[:a]\n y=s[b:]\n return ... |
{"code1": "a, b, c, k = map(int, input().split())\nans = 0\nif a >= k:\n ans = k\nelif a < k and a+b >= k:\n ans = a\nelse:\n ans = a - (k-(a+b))\nprint(ans)", "code2": "a, b, c, k = map(int, input().split())\n\n\nif k - a <= 0:\n print(k)\nelif k - a > 0 and k - a - b <= 0:\n print(a)\nelse:\n s = k - a - ... |
{"code1": "import sys\nimport time\nimport math\nimport itertools as it\ndef inpl():\n return list(map(int, input().split()))\nst = time.perf_counter()\n# ------------------------------\n\nA, B = map(int, input().split())\nprint(int(A*B))\n\n# ------------------------------\ned = time.perf_counter()\nprint('time:', ... |
{"code1": "K=int(input())\nA,B=map(int,input().split())\nfor x in range(A,B+1):\n if x%K==0:\n print(\"OK\")\n break\nelse:\n print(\"NG\")\n", "code2": "import sys\n\nK = int(input())\nA, B = (int(x) for x in input().split())\nnum=0\nwhile B>=num:\n num+=K\n if A<=num and num<=B:\n print(\"OK\... |
{"Unnamed: 0": 0, "date": "2016-06-26", "year": 2016, "month": 6.0, "day": 26, "author": "FoxSports", "title": "Astros-Angels preview", "content": "ANAHEIM, Calif.", "url": "https://www.foxnews.com/sports/astros-angels-preview", "section": "MLB", "publication": "Fox News", "label": 0, "content_list": "['ANAHEIM,', 'Cal... |
{"Unnamed: 0": 1, "date": "2016-06-26", "year": 2016, "month": 6.0, "day": 26, "author": "FoxSports", "title": "Astros-Angels preview", "content": "-- The Houston Astros hope to extend their five-week surge by once again tormenting the Los Angeles Angels when both teams begin a three-game series Monday night at Angel S... |
{"Unnamed: 0": 2, "date": "2016-06-26", "year": 2016, "month": 6.0, "day": 26, "author": "FoxSports", "title": "Astros-Angels preview", "content": "Considered a favorite for the American League West championship, the Astros owned a 17-28 record on May 22.", "url": "https://www.foxnews.com/sports/astros-angels-preview",... |
{"Unnamed: 0": 3, "date": "2016-06-26", "year": 2016, "month": 6.0, "day": 26, "author": "FoxSports", "title": "Astros-Angels preview", "content": "Since then, however, Houston has won 22 of the next 31 games to move within 1 1/2 games of the Toronto Blue Jays for the final wild-card playoff spot.", "url": "https://www... |
{"Unnamed: 0": 4, "date": "2016-06-26", "year": 2016, "month": 6.0, "day": 26, "author": "FoxSports", "title": "Astros-Angels preview", "content": "The Astros&apos 32-19 record since May 1 is the third best in the American League, despite the fact that the Kansas City Royals&apos broke their seven-game winning streak S... |
{"Unnamed: 0": 5, "date": "2016-06-26", "year": 2016, "month": 6.0, "day": 26, "author": "FoxSports", "title": "Astros-Angels preview", "content": "That streak was the club&aposs longest this year.", "url": "https://www.foxnews.com/sports/astros-angels-preview", "section": "MLB", "publication": "Fox News", "label": 0, ... |
{"Unnamed: 0": 6, "date": "2016-06-26", "year": 2016, "month": 6.0, "day": 26, "author": "FoxSports", "title": "Astros-Angels preview", "content": "\"We&aposve done everything we can to inch back to relevance but this isn&apost going to accomplish anything,\" Astros manager A.", "url": "https://www.foxnews.com/sports/a... |
{"Unnamed: 0": 7, "date": "2016-06-26", "year": 2016, "month": 6.0, "day": 26, "author": "FoxSports", "title": "Astros-Angels preview", "content": "J.", "url": "https://www.foxnews.com/sports/astros-angels-preview", "section": "MLB", "publication": "Fox News", "label": 0, "content_list": "['J.']"} |
{"Unnamed: 0": 8, "date": "2016-06-26", "year": 2016, "month": 6.0, "day": 26, "author": "FoxSports", "title": "Astros-Angels preview", "content": "Hinch told MLB.", "url": "https://www.foxnews.com/sports/astros-angels-preview", "section": "MLB", "publication": "Fox News", "label": 0, "content_list": "['Hinch', 'told',... |
{"Unnamed: 0": 9, "date": "2016-06-26", "year": 2016, "month": 6.0, "day": 26, "author": "FoxSports", "title": "Astros-Angels preview", "content": "com when his club reached .", "url": "https://www.foxnews.com/sports/astros-angels-preview", "section": "MLB", "publication": "Fox News", "label": 0, "content_list": "['com... |
{"Snomed": "Victim of sexual aggression (finding).", "SignSymptom": "Assaulted sexually"} |
{"Snomed": "Victim of verbal abuse (finding).", "SignSymptom": "Attacked verbally"} |
{"Snomed": "Victim of violent environment (finding).", "SignSymptom": "Violent environment"} |
{"Snomed": "Victim of harsh discipline (finding).", "SignSymptom": "Harsh/excessive discipline"} |
{"Snomed": "Victim of consistent negative messages (finding).", "SignSymptom": "Consistent negative messages"} |
{"Snomed": "Victim of excessive discipline (finding).", "SignSymptom": "Harsh/excessive discipline"} |
{"Snomed": "Caregiver difficulty interpreting non-verbal communication (finding).", "SignSymptom": "Difficulty interpreting or responding to verbal/nonverbal communication"} |
{"Snomed": "Caregiver difficulty providing physical care (finding).", "SignSymptom": "Difficulty providing physical care/safety"} |
{"Snomed": "Caregiver difficulty providing cognitive learning experiences (finding).", "SignSymptom": "Difficulty providing cognitive learning experiences and activities"} |
{"Snomed": "Caregiver difficulty providing physical safety (finding).", "SignSymptom": "Difficulty providing physical care/safety"} |
{"q_id": "32wvn8", "title": "what's the difference between a forest and a wood?", "selftext": "", "document": "", "subreddit": "explainlikeimfive", "url": "http://www.reddit.com/r/explainlikeimfive/comments/32wvn8/eli5_whats_the_difference_between_a_forest_and_a/", "answers": {"a_id": ["cqfd1d8"], "score": [2], "text":... |
{"q_id": "1yc9zg", "title": "Are there any good source material on the Warsaw Ghetto to be had online?", "selftext": "Hi guys, I have a project I'm working on which requires unbiased primary sources on the Warsaw ghetto (demographics, population density, supplies, mortality rates, etc.). I've been scouring the net and ... |
{"q_id": "elzx1n", "title": "we do we instinctively grab a part of our body after it is hurt?", "selftext": "I just tweaked my wrist and my immediate reaction was to grasp it. I have no idea if grabbing it actually does anything, but it seems to be a natural reaction for most people when a body part hurts. Why is that?... |
{"q_id": "3qr7uu", "title": "In medieval and pre-modern times, political entities made marriage pacts between heirs in order to secure peace. Often times, this didn't last for more than 20 years, if not even less. Why did they even bother?", "selftext": "this peace didn't last*...", "document": "", "subreddit": "AskHis... |
{"q_id": "fvbxhi", "title": "What happened to German and Italian volunteers in the International Brigades of the Spanish Civil War after they were disbanded in 1938?", "selftext": "", "document": "", "subreddit": "AskHistorians", "url": "https://www.reddit.com/r/AskHistorians/comments/fvbxhi/what_happened_to_german_and... |
{"q_id": "31qce9", "title": "What (if anything) did Native Americans think lay beyond the Pacific and Atlantic oceans?", "selftext": "Were there any religious or cultural assumptions about it being the edge of the world? Was there any speculation about there being other continents and civilizations? Mostly thinking of ... |
{"q_id": "11j8u0", "title": "Is it possible that in the distant future, an organism that exists right now on Earth, will evolve to the point that it can be considered intelligent life? Which animal comes the closest? ", "selftext": "", "document": "", "subreddit": "askscience", "url": "http://www.reddit.com/r/askscienc... |
{"q_id": "1qfda2", "title": "How much can you learn from someone's genome?", "selftext": "I've heard you can learn id someone by looking at their DNA, but what else can you learn if you know what to look for?", "document": "", "subreddit": "askscience", "url": "http://www.reddit.com/r/askscience/comments/1qfda2/how_muc... |
{"context": "Provided is a universal Ku band LNB (9.75/10.600 GHz) which is fitted at the end of the dish and pointed at the correct satellite constellation; most digital receivers will receive the free to air channels. Some broadcasts are free-to-air and unencrypted, some are encrypted but do not require a monthly sub... |
{"context": "At the beginning of the 20th century, important advancement in geological science was facilitated by the ability to obtain accurate absolute dates to geologic events using radioactive isotopes and other methods. This changed the understanding of geologic time. Previously, geologists could only use fossils ... |
{"context": "Packet mode communication may be implemented with or without intermediate forwarding nodes (packet switches or routers). Packets are normally forwarded by intermediate network nodes asynchronously using first-in, first-out buffering, but may be forwarded according to some scheduling discipline for fair que... |
{"context": "Many complexity classes are defined using the concept of a reduction. A reduction is a transformation of one problem into another problem. It captures the informal notion of a problem being at least as difficult as another problem. For instance, if a problem X can be solved using an algorithm for Y, X is n... |
{"context": "In 1096, Crusaders passing by the siege of Amalfi were joined by Bohemond of Taranto and his nephew Tancred with an army of Italo-Normans. Bohemond was the de facto leader of the Crusade during its passage through Asia Minor. After the successful Siege of Antioch in 1097, Bohemond began carving out an inde... |
{"context": "In October 2010, the open-access scientific journal PLoS Pathogens published a paper by a multinational team who undertook a new investigation into the role of Yersinia pestis in the Black Death following the disputed identification by Drancourt and Raoult in 1998. They assessed the presence of DNA/RNA wit... |
{"id": "12", "label": 40, "text": "zeit zu schlafen", "label_text": "iot_hue_lightoff", "label_text_de": "iot hue lightoff"} |
{"id": "13", "label": 40, "text": "zeit schlafen zu gehen olly", "label_text": "iot_hue_lightoff", "label_text_de": "iot hue lightoff"} |
{"id": "13818513", "dialogue": "Amanda: I baked cookies. Do you want some?\r\nJerry: Sure!\r\nAmanda: I'll bring you tomorrow :-)", "summary": "A baked cookies and will bring B some tomorrow.", "sentences": ["A: I baked cookies. Do you want some?", "B: Sure!", "A: I'll bring you tomorrow :-)"], "sentence_id": ["80cfd... |
{"id": "13728867", "dialogue": "Olivia: Who are you voting for in this election? \r\nOliver: Liberals as always.\r\nOlivia: Me too!!\r\nOliver: Great", "summary": "B and Olivier are voting for liberals in this election. ", "sentences": ["B: Who are you voting for in this election? ", "A: Liberals as always.", "B: Me to... |
{"id": "13681000", "dialogue": "Tim: Hi, what's up?\r\nKim: Bad mood tbh, I was going to do lots of stuff but ended up procrastinating\r\nTim: What did you plan on doing?\r\nKim: Oh you know, uni stuff and unfucking my room\r\nKim: Maybe tomorrow I'll move my ass and do everything\r\nKim: We were going to defrost a fri... |
{"id": "13730747", "dialogue": "Edward: Rachel, I think I'm in ove with Bella..\r\nrachel: Dont say anything else..\r\nEdward: What do you mean??\r\nrachel: Open your fu**ing door.. I'm outside", "summary": "A thinks he is in love with Bella. Rachel wants A to open his door. Rachel is outside. ", "sentences": ["A: Rach... |
{"id": "13728094", "dialogue": "Sam: hey overheard rick say something\r\nSam: i don't know what to do :-/\r\nNaomi: what did he say??\r\nSam: he was talking on the phone with someone\r\nSam: i don't know who\r\nSam: and he was telling them that he wasn't very happy here\r\nNaomi: damn!!!\r\nSam: he was saying he doesn... |
{"id": "13716343", "dialogue": "Neville: Hi there, does anyone remember what date I got married on?\r\nDon: Are you serious?\r\nNeville: Dead serious. We're on vacation, and Tina's mad at me about something. I have a strange suspicion that this might have something to do with our wedding anniversary, but I have nowhere... |
{"id": "13611672", "dialogue": "John: Ave. Was there any homework for tomorrow?\r\nCassandra: hello :D Of course, as always :D\r\nJohn: What exactly?\r\nCassandra: I'm not sure so I'll check it for you in 20minutes. \r\nJohn: Cool, thanks. Sorry I couldn't be there, but I was busy as fuck...my stupid boss as always was... |
{"id": "13730463", "dialogue": "Sarah: I found a song on youtube and I think you'll like it\r\nJames: What song?\r\nSarah: <file_other>\r\nJames: Oh. I know it! \r\nJames: I heard it before in some compilation\r\nSarah: I can't stop playing it over and over\r\nJames: That's exactly how I know lyrics to all of the songs... |
{"id": "13809976", "dialogue": "Noah: When and where are we meeting? :)\r\nMadison: I thought you were busy...?\r\nNoah: Yeah, I WAS. I quit my job. \r\nMadison: No way! :o :o :o Why? I thought you liked it...?\r\nNoah: Well, I used to, until my boss turned into a complete cock... Long story.", "summary": "B wants to m... |
{"id": "13809912", "dialogue": "Matt: Do you want to go for date?\r\nAgnes: Wow! You caught me out with this question Matt.\r\nMatt: Why?\r\nAgnes: I simply didn't expect this from you.\r\nMatt: Well, expect the unexpected.\r\nAgnes: Can I think about it?\r\nMatt: What is there to think about?\r\nAgnes: Well, I don't r... |
{"Input text": "This position requires you to work remotely from the office of our client.", "Classification threshold": "0.998", "Binary classification": "{\"Work from home\": 1}", "Predicted probability": "Probability of WFH: 1.0", "flag": "mistake"} |
{"Input text": "This job allows people to mostly work at there own homes.", "Classification threshold": "0.5", "Binary classification": "{\"Not work from home\": 1}", "Predicted probability": "Probability of WFH: 0.0", "flag": "mistake"} |
{"Input text": "remot work: yes", "Classification threshold": "0.5", "Binary classification": "{\"Not work from home\": 1}", "Predicted probability": "Probability of WFH: 0.008", "flag": "mistake"} |
{"Input text": "This position does not allow us to come to the office", "Classification threshold": "0.5", "Binary classification": "{\"Not work from home\": 1}", "Predicted probability": "Probability of WFH: 0.01", "flag": "mistake"} |
{"Input text": "Interviews will be conducted virtually", "Classification threshold": "0.5", "Binary classification": "{\"Work from home\": 1}", "Predicted probability": "Probability of WFH: 0.566", "flag": "mistake"} |
{"Input text": "This is a work from home position.", "Classification threshold": "0.5", "Binary classification": "{\"Work from home\": 1}", "Predicted probability": "Probability of WFH: 0.997", "flag": "mistake"} |
{"Input text": "testing", "Classification threshold": "0.5", "Binary classification": "{\"Not work from home\": 1}", "Predicted probability": "Probability of WFH: 0.001", "flag": "mistake"} |
{"Input text": "testing", "Classification threshold": "0.5", "Binary classification": "{\"Not work from home\": 1}", "Predicted probability": "Probability of WFH: 0.001", "flag": "mistake"} |
{"Input text": "testing", "Classification threshold": "0.5", "Binary classification": "{\"Not work from home\": 1}", "Predicted probability": "Probability of WFH: 0.001", "flag": "mistake"} |
{"Input text": "testing", "Classification threshold": "0.5", "Binary classification": "{\"Not work from home\": 1}", "Predicted probability": "Probability of WFH: 0.001", "flag": "mistake"} |
{"text": "the use of various imaging techniques in post - treatment assessment of head neck cancer is gradually on the rise , though clinical examinations at periodic intervals still remains the mainstay of follow - up .\n18f fdg pet / ct is increasingly used in the post - treatment setting to diagnose residual / recu... |
{"text": "the bacterial isolates were collected throughout finland during 19982007 as described ( 10 ) . of\nbionumerics version 5.1 software ( applied maths , kortrijk , belgium ) was used for sequence assembly .\nallele numbers , sequence types ( sts ) , and clonal complexes ( ccs ) were assigned by using the pubmlst... |
{"text": "there appears to have been consensus in the past decades in classifying systemic sclerosis ( ssc ) according to extension of skin involvement as limited and diffuse , using the elbows and knees as limits to distinguish between them .\nhowever , although this has been used to dissect two more or less disti... |
{"text": "common failure of the root canal obturation process is because of the presence of gaps and porosities at the sealer / dentin interface .\nseveral studies have shown that filled root canals can allow the re - colonization of micro - organisms .\nthe presence of micro - organisms and their products in the treat... |
{"text": "vision 2020 is a joint initiative by the world health organization ( who ) and the international agency for the prevention of blindness , that aims to eliminate avoidable blindness by the year 2020 .\nthe vision 2020 strategy depends on the development of district level plans for the prevention of avoidable b... |
{"text": "they are usually encountered as incidental findings in magnetic resonance imaging ( mri ) , or in arthroscopy .\nthey may originate from both the cruciate ligaments and the menisci , from the popliteus tendon and alar folds , infrapatellar fat pad of hoffa , and subchondral bone cysts .\nthose arising from th... |
{"text": "pancreatitis is a major well - known complication of endoscopic retrograde cholangiopancreatography ( ercp ) with reported incidence ranging from 1% to 10% in various series [ 1 - 3 ] .\nbut the most accepted theory is mechanical trauma to papilla or pancreatic sphincter causing transient obstruction to outfl... |
{"text": "a 75-year - old male farmer presented to a primary care skin cancer practice in west australia with a 6-month history of an enlarging painless lesion on his left cheek with no history of any possible precursor lesion .\nthere was a past history of treatment of two separate squamous cell carcinomas in - situ ,... |
{"text": "today , the treatment of choice is surgical excision of the tongue , but before 1900 , surgery was often temida1 . only in 1673 niels\nthe size and shape of the teeth are directly influenced by the size of tongue3 .\nthe shape of the teeth is determined by forces employed on the teeth , especially the muscles... |
{"url": "https://api.github.com/repos/huggingface/datasets/issues/3579", "repository_url": "https://api.github.com/repos/huggingface/datasets", "labels_url": "https://api.github.com/repos/huggingface/datasets/issues/3579/labels{/name}", "comments_url": "https://api.github.com/repos/huggingface/datasets/issues/3579/comm... |
{"url": "https://api.github.com/repos/huggingface/datasets/issues/3578", "repository_url": "https://api.github.com/repos/huggingface/datasets", "labels_url": "https://api.github.com/repos/huggingface/datasets/issues/3578/labels{/name}", "comments_url": "https://api.github.com/repos/huggingface/datasets/issues/3578/comm... |
{"url": "https://api.github.com/repos/huggingface/datasets/issues/3577", "repository_url": "https://api.github.com/repos/huggingface/datasets", "labels_url": "https://api.github.com/repos/huggingface/datasets/issues/3577/labels{/name}", "comments_url": "https://api.github.com/repos/huggingface/datasets/issues/3577/comm... |
{"url": "https://api.github.com/repos/huggingface/datasets/issues/3576", "repository_url": "https://api.github.com/repos/huggingface/datasets", "labels_url": "https://api.github.com/repos/huggingface/datasets/issues/3576/labels{/name}", "comments_url": "https://api.github.com/repos/huggingface/datasets/issues/3576/comm... |
{"url": "https://api.github.com/repos/huggingface/datasets/issues/3575", "repository_url": "https://api.github.com/repos/huggingface/datasets", "labels_url": "https://api.github.com/repos/huggingface/datasets/issues/3575/labels{/name}", "comments_url": "https://api.github.com/repos/huggingface/datasets/issues/3575/comm... |
{"url": "https://api.github.com/repos/huggingface/datasets/issues/3574", "repository_url": "https://api.github.com/repos/huggingface/datasets", "labels_url": "https://api.github.com/repos/huggingface/datasets/issues/3574/labels{/name}", "comments_url": "https://api.github.com/repos/huggingface/datasets/issues/3574/comm... |
{"url": "https://api.github.com/repos/huggingface/datasets/issues/3573", "repository_url": "https://api.github.com/repos/huggingface/datasets", "labels_url": "https://api.github.com/repos/huggingface/datasets/issues/3573/labels{/name}", "comments_url": "https://api.github.com/repos/huggingface/datasets/issues/3573/comm... |
{"url": "https://api.github.com/repos/huggingface/datasets/issues/3572", "repository_url": "https://api.github.com/repos/huggingface/datasets", "labels_url": "https://api.github.com/repos/huggingface/datasets/issues/3572/labels{/name}", "comments_url": "https://api.github.com/repos/huggingface/datasets/issues/3572/comm... |
{"url": "https://api.github.com/repos/huggingface/datasets/issues/3571", "repository_url": "https://api.github.com/repos/huggingface/datasets", "labels_url": "https://api.github.com/repos/huggingface/datasets/issues/3571/labels{/name}", "comments_url": "https://api.github.com/repos/huggingface/datasets/issues/3571/comm... |
{"url": "https://api.github.com/repos/huggingface/datasets/issues/3570", "repository_url": "https://api.github.com/repos/huggingface/datasets", "labels_url": "https://api.github.com/repos/huggingface/datasets/issues/3570/labels{/name}", "comments_url": "https://api.github.com/repos/huggingface/datasets/issues/3570/comm... |
{"set": ["Millimeter-wave CMOS digital controlled artificial dielectric differential mode transmission lines for reconfigurable ICs", "CMP network-on-chip overlaid with multi-band RF-interconnect", "Route packets, not wires: on-chip interconnection networks"]} |
{"set": ["Millimeter-wave CMOS digital controlled artificial dielectric differential mode transmission lines for reconfigurable ICs", "CMP network-on-chip overlaid with multi-band RF-interconnect", "Entheses: tendon and ligament attachment sites"]} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.