Spaces:
Runtime error
Runtime error
bhaskartripathi
commited on
Commit
•
881056b
1
Parent(s):
b061c53
Update examples_list.py
Browse files- examples_list.py +22 -40
examples_list.py
CHANGED
@@ -1,42 +1,24 @@
|
|
1 |
-
|
|
|
2 |
examples_list = [
|
3 |
-
["
|
4 |
-
[
|
5 |
-
|
6 |
-
],
|
7 |
-
["
|
8 |
-
[
|
9 |
-
],
|
10 |
-
[
|
11 |
-
|
12 |
-
],
|
13 |
-
["is
|
14 |
-
["
|
15 |
-
[
|
16 |
-
|
17 |
-
],
|
18 |
-
["What
|
19 |
-
["
|
20 |
-
["
|
21 |
-
["
|
22 |
-
["
|
23 |
-
["鲁迅和周树人什么关系? 说中文。"],
|
24 |
-
["鲁迅和周树人什么关系?"],
|
25 |
-
["鲁迅和周树人什么关系? 用英文回答。"],
|
26 |
-
["从前有一头牛,这头牛后面有什么?"],
|
27 |
-
["正无穷大加一大于正无穷大吗?"],
|
28 |
-
["正无穷大加正无穷大大于正无穷大吗?"],
|
29 |
-
["-2的平方根等于什么?"],
|
30 |
-
["树上有5只鸟,猎人开枪打死了一只。树上还有几只鸟?"],
|
31 |
-
["树上有11只鸟,猎人开枪打死了一只。树上还有几只鸟?提示:需考虑鸟可能受惊吓飞走。"],
|
32 |
-
["以红楼梦的行文风格写一张委婉的请假条。不少于320字。"],
|
33 |
-
[f"Translate ths following to Chinese. List 2 variants: \n{etext}"],
|
34 |
-
[f"{etext} 翻成中文,列出3个版本。"],
|
35 |
-
[f"{etext} \n 翻成中文,保留原意,但使用文学性的语言。不要写解释。列出3个版本。"],
|
36 |
-
["假定 1 + 2 = 4, 试求 7 + 8。"],
|
37 |
-
["给出判断一个数是不是质数的 javascript 码。"],
|
38 |
-
["给出实现python 里 range(10)的 javascript 码。"],
|
39 |
-
["给出实现python 里 [*(range(10)]的 javascript 码。"],
|
40 |
-
["Erkläre die Handlung von Cinderella in einem Satz."],
|
41 |
-
["Erkläre die Handlung von Cinderella in einem Satz. Auf Deutsch."],
|
42 |
]
|
|
|
1 |
+
|
2 |
+
etext = """In India, where trains play a significant role in connecting the vast nation, which year saw a significant decline in train travel, reminiscent of a past national event?"""
|
3 |
examples_list = [
|
4 |
+
["Which Indian cricketer holds the record for the highest individual score in ODI cricket?"],
|
5 |
+
["Who was the captain of the Indian cricket team during the 2011 World Cup?"],
|
6 |
+
["Name the stadium in Kolkata that's one of the largest cricket stadiums in the world."],
|
7 |
+
["Which Indian cricketer is known as the 'God of Cricket'?"],
|
8 |
+
["In which year did India win its first cricket World Cup?"],
|
9 |
+
["कौन सी नदी को भारत में सबसे पवित्र माना जाता है?"],
|
10 |
+
["भारत के पहले प्रधानमंत्री कौन थे?"],
|
11 |
+
["तमिलनाडु राज्य में उत्पन्न हुए शास्त्रीय नृत्य का नाम बताएं।"],
|
12 |
+
["कौन सा भारतीय त्योहार 'प्रकाश का त्योहार' के रूप में जाना जाता है?"],
|
13 |
+
["भारत ने ब्रिटिश शासन से स्वतंत्रता किस वर्ष प्राप्त की थी?"],
|
14 |
+
["Which Indian city is known as the 'Pink City'?"],
|
15 |
+
["Name the Indian state where the Sundarbans mangrove forest is located."],
|
16 |
+
["Which Indian emperor built the Taj Mahal and for whom?"],
|
17 |
+
["What is the national bird of India?"],
|
18 |
+
["Which Indian state is known for its tea plantations?"],
|
19 |
+
["What is the primary difference between supervised and unsupervised learning?"],
|
20 |
+
["Which algorithm is commonly used for classification problems in machine learning?"],
|
21 |
+
["Name a popular deep learning framework developed by Google."],
|
22 |
+
["What is the role of a loss function in machine learning?"],
|
23 |
+
["Which technique helps in reducing the dimensionality of data in machine learning?"],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
24 |
]
|