Assalamualaikum Sahabat Whitecyber semua …. 🙂
.
Kali ini Whitecyber Team akan berbagi Project kecil sample dalam pembuatan Chat GPT yang bisa kita buat sendiri menggunakan Python. Memang untuk Chat GPT sendiri membutuhkan DATABASE yang sangat besar, dengan kekuatan RAM, dan PROCESSOR yang sangat besar, Tentunya itu tidak kita kerjakan. Namun kami akan share Tips dan Logika cara membuat Chat GPT sendiri berbasis 1 tabel. Kami catat disini supaya tidak hilang, dengan sumber disini.
Kami menggunakan Teknologi GOOGLE COLLABS untuk membangun code ini. Dibutuhkan 500 MEGA hanya untuk mengakses 1 buah tabel. Jadi terbayang kan, seberapa besar Source Computer yang harus kita sendiakan untuk membangun Chat GPT kita sendiri bila ingin bersaing dengan Chat GPT yang aslinya.
.
Yuk kita simak tahap-tahapnya adalah sebagai berikut :
.
!pip install -q transformers==4.4.2
|████████████████████████████████| 2.0 MB 4.8 MB/s |████████████████████████████████| 880 kB 37.5 MB/s |████████████████████████████████| 3.3 MB 35.2 MB/s Building wheel for sacremoses (setup.py) ... done
.
In [2]:
import torch torch.__version__
Out[2]:
'1.13.0+cu116'
.
In [3]:
!pip install torch-scatter -f https://pytorch-geometric.com/whl/torch-1.8.0+cu101.html
Looking in indexes: https://pypi.org/simple, https://us-python.pkg.dev/colab-wheels/public/simple/ Looking in links: https://pytorch-geometric.com/whl/torch-1.8.0+cu101.html Collecting torch-scatter Downloading torch_scatter-2.1.0.tar.gz (106 kB) |████████████████████████████████| 106 kB 5.2 MB/s Building wheels for collected packages: torch-scatter Building wheel for torch-scatter (setup.py) ... done Created wheel for torch-scatter: filename=torch_scatter-2.1.0-cp38-cp38-linux_x86_64.whl size=477429 sha256=03e935c7a6a0484b6aba91736600ada76361332852ebe414ae6c1c1fec021451 Stored in directory: /root/.cache/pip/wheels/41/7f/4f/cf072bea3b6efe4561de2db3603ebbd8718c134c24caab8281 Successfully built torch-scatter Installing collected packages: torch-scatter Successfully installed torch-scatter-2.1.0
.
In [4]:
from transformers import pipeline import pandas as pd
.
In [5]:
tqa = pipeline(task=”table-question-answering”,model=”google/tapas-base-finetuned-wtq”)
Downloading: 0%| | 0.00/1.66k [00:00<?, ?B/s]
Downloading: 0%| | 0.00/443M [00:00<?, ?B/s]
Downloading: 0%| | 0.00/262k [00:00<?, ?B/s]
Downloading: 0%| | 0.00/154 [00:00<?, ?B/s]
Downloading: 0%| | 0.00/490 [00:00<?, ?B/s]
.
In [8]:
table=pd.read_csv(“data.csv”)
.
In [9]:
table = table.astype(str)
.
In [10]:
table
.
Out[10]:
Pos | Player | Team | Span | Innings | Runs | Highest Score | Average | Strike Rate | |
---|---|---|---|---|---|---|---|---|---|
0 | 1 | Sachin Tendulkar | India | 1989-2012 | 452 | 18426 | 200 | 44.83 | 86.23 |
1 | 2 | Kumar Sangakkara | Sri Lanka | 2000-2015 | 380 | 14234 | 169 | 41.98 | 78.86 |
2 | 3 | Ricky Ponting | Australia | 1995-2012 | 365 | 13704 | 164 | 42.03 | 80.39 |
3 | 4 | Sanath Jayasuriya | Sri Lanka | 1989-2011 | 433 | 13430 | 189 | 32.36 | 91.2 |
4 | 5 | Mahela Jayawardene | Sri Lanka | 1998-2015 | 418 | 12650 | 144 | 33.37 | 78.96 |
5 | 6 | Virat Kohli | India | 2008-2020 | 236 | 11867 | 183 | 59.85 | 93.39 |
6 | 7 | Inzamam-ul-Haq | Pakistan | 1991-2007 | 350 | 11739 | 137 | 39.52 | 74.24 |
7 | 8 | Jacques Kallis | South Africa | 1996-2014 | 314 | 11579 | 139 | 44.36 | 72.89 |
8 | 9 | Saurav Ganguly | India | 1992-2007 | 300 | 11363 | 183 | 41.02 | 73.7 |
9 | 10 | Rahul Dravid | India | 1996-2011 | 318 | 10889 | 153 | 39.16 | 71.24 |
.
In [11]:
query = “Who has scored the highest runs?”print(tqa(table=table,query=query)[“answer”])
Sachin Tendulkar . Bagaimana code pemprogramannya ? nie kami share disini. . CODE PROGRAM .
{
"nbformat": 4,
"nbformat_minor": 0,
"metadata": {
"colab": {
"provenance": []
},
"kernelspec": {
"name": "python3",
"display_name": "Python 3"
},
"language_info": {
"name": "python"
},
"widgets": {
"application/vnd.jupyter.widget-state+json": {
"809cdba5a2714815a8a384f742947811": {
"model_module": "@jupyter-widgets/controls",
"model_name": "HBoxModel",
"model_module_version": "1.5.0",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "1.5.0",
"_model_name": "HBoxModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/controls",
"_view_module_version": "1.5.0",
"_view_name": "HBoxView",
"box_style": "",
"children": [
"IPY_MODEL_fb42e780c4a54066a46476e66ab9a596",
"IPY_MODEL_28e48cc3651a42c994e14df80a182f78",
"IPY_MODEL_7adb13fede4f4fbdb0a836ef494c52fc"
],
"layout": "IPY_MODEL_7c5a7993faa940c5b34489aeea90a3eb"
}
},
"fb42e780c4a54066a46476e66ab9a596": {
"model_module": "@jupyter-widgets/controls",
"model_name": "HTMLModel",
"model_module_version": "1.5.0",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "1.5.0",
"_model_name": "HTMLModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/controls",
"_view_module_version": "1.5.0",
"_view_name": "HTMLView",
"description": "",
"description_tooltip": null,
"layout": "IPY_MODEL_d4bfc543c3644f82a357e973b64bc8a8",
"placeholder": "",
"style": "IPY_MODEL_72fb573f2cfe4e5ba5a419e0c5ded7e6",
"value": "Downloading: 100%"
}
},
"28e48cc3651a42c994e14df80a182f78": {
"model_module": "@jupyter-widgets/controls",
"model_name": "FloatProgressModel",
"model_module_version": "1.5.0",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "1.5.0",
"_model_name": "FloatProgressModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/controls",
"_view_module_version": "1.5.0",
"_view_name": "ProgressView",
"bar_style": "success",
"description": "",
"description_tooltip": null,
"layout": "IPY_MODEL_da83ae4b20be457aa77808ba175c88c7",
"max": 1657,
"min": 0,
"orientation": "horizontal",
"style": "IPY_MODEL_bb624fe65d84454e95b9c5da8ab85b40",
"value": 1657
}
},
"7adb13fede4f4fbdb0a836ef494c52fc": {
"model_module": "@jupyter-widgets/controls",
"model_name": "HTMLModel",
"model_module_version": "1.5.0",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "1.5.0",
"_model_name": "HTMLModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/controls",
"_view_module_version": "1.5.0",
"_view_name": "HTMLView",
"description": "",
"description_tooltip": null,
"layout": "IPY_MODEL_f7eff88e134742d6ac34207d459c88c7",
"placeholder": "",
"style": "IPY_MODEL_49682e6d3b8a4a30b7a0c9010e2b2987",
"value": " 1.66k/1.66k [00:00<00:00, 27.2kB/s]"
}
},
"7c5a7993faa940c5b34489aeea90a3eb": {
"model_module": "@jupyter-widgets/base",
"model_name": "LayoutModel",
"model_module_version": "1.2.0",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "1.2.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"overflow_x": null,
"overflow_y": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"d4bfc543c3644f82a357e973b64bc8a8": {
"model_module": "@jupyter-widgets/base",
"model_name": "LayoutModel",
"model_module_version": "1.2.0",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "1.2.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"overflow_x": null,
"overflow_y": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"72fb573f2cfe4e5ba5a419e0c5ded7e6": {
"model_module": "@jupyter-widgets/controls",
"model_name": "DescriptionStyleModel",
"model_module_version": "1.5.0",
"state": {
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "1.5.0",
"_model_name": "DescriptionStyleModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "StyleView",
"description_width": ""
}
},
"da83ae4b20be457aa77808ba175c88c7": {
"model_module": "@jupyter-widgets/base",
"model_name": "LayoutModel",
"model_module_version": "1.2.0",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "1.2.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"overflow_x": null,
"overflow_y": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"bb624fe65d84454e95b9c5da8ab85b40": {
"model_module": "@jupyter-widgets/controls",
"model_name": "ProgressStyleModel",
"model_module_version": "1.5.0",
"state": {
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "1.5.0",
"_model_name": "ProgressStyleModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "StyleView",
"bar_color": null,
"description_width": ""
}
},
"f7eff88e134742d6ac34207d459c88c7": {
"model_module": "@jupyter-widgets/base",
"model_name": "LayoutModel",
"model_module_version": "1.2.0",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "1.2.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"overflow_x": null,
"overflow_y": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"49682e6d3b8a4a30b7a0c9010e2b2987": {
"model_module": "@jupyter-widgets/controls",
"model_name": "DescriptionStyleModel",
"model_module_version": "1.5.0",
"state": {
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "1.5.0",
"_model_name": "DescriptionStyleModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "StyleView",
"description_width": ""
}
},
"4526579e76b144179877b0a1f3ac31cc": {
"model_module": "@jupyter-widgets/controls",
"model_name": "HBoxModel",
"model_module_version": "1.5.0",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "1.5.0",
"_model_name": "HBoxModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/controls",
"_view_module_version": "1.5.0",
"_view_name": "HBoxView",
"box_style": "",
"children": [
"IPY_MODEL_d10455ab1c9e4e0e8049e4886c062c35",
"IPY_MODEL_ff2f5c3ee2fe4c0982afaa6734edca2d",
"IPY_MODEL_4440456c61a743558c3a08a74ef76b89"
],
"layout": "IPY_MODEL_a20b91acbe9d4963a80aacf17162629d"
}
},
"d10455ab1c9e4e0e8049e4886c062c35": {
"model_module": "@jupyter-widgets/controls",
"model_name": "HTMLModel",
"model_module_version": "1.5.0",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "1.5.0",
"_model_name": "HTMLModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/controls",
"_view_module_version": "1.5.0",
"_view_name": "HTMLView",
"description": "",
"description_tooltip": null,
"layout": "IPY_MODEL_366f00a510b542c18a465acee6634833",
"placeholder": "",
"style": "IPY_MODEL_b0f7f63452f14656a0bbecf54a94e71a",
"value": "Downloading: 100%"
}
},
"ff2f5c3ee2fe4c0982afaa6734edca2d": {
"model_module": "@jupyter-widgets/controls",
"model_name": "FloatProgressModel",
"model_module_version": "1.5.0",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "1.5.0",
"_model_name": "FloatProgressModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/controls",
"_view_module_version": "1.5.0",
"_view_name": "ProgressView",
"bar_style": "success",
"description": "",
"description_tooltip": null,
"layout": "IPY_MODEL_fac4f183b6404073896b1cae65f92a27",
"max": 442791751,
"min": 0,
"orientation": "horizontal",
"style": "IPY_MODEL_f0e37b69eb4744a486d6713c73b929bb",
"value": 442791751
}
},
"4440456c61a743558c3a08a74ef76b89": {
"model_module": "@jupyter-widgets/controls",
"model_name": "HTMLModel",
"model_module_version": "1.5.0",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "1.5.0",
"_model_name": "HTMLModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/controls",
"_view_module_version": "1.5.0",
"_view_name": "HTMLView",
"description": "",
"description_tooltip": null,
"layout": "IPY_MODEL_1963eb8c22e4439a822c215f7c758508",
"placeholder": "",
"style": "IPY_MODEL_38f4ad7d8fc04a29bf4dc1a498da09b2",
"value": " 443M/443M [00:10<00:00, 48.4MB/s]"
}
},
"a20b91acbe9d4963a80aacf17162629d": {
"model_module": "@jupyter-widgets/base",
"model_name": "LayoutModel",
"model_module_version": "1.2.0",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "1.2.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"overflow_x": null,
"overflow_y": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"366f00a510b542c18a465acee6634833": {
"model_module": "@jupyter-widgets/base",
"model_name": "LayoutModel",
"model_module_version": "1.2.0",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "1.2.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"overflow_x": null,
"overflow_y": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"b0f7f63452f14656a0bbecf54a94e71a": {
"model_module": "@jupyter-widgets/controls",
"model_name": "DescriptionStyleModel",
"model_module_version": "1.5.0",
"state": {
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "1.5.0",
"_model_name": "DescriptionStyleModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "StyleView",
"description_width": ""
}
},
"fac4f183b6404073896b1cae65f92a27": {
"model_module": "@jupyter-widgets/base",
"model_name": "LayoutModel",
"model_module_version": "1.2.0",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "1.2.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"overflow_x": null,
"overflow_y": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"f0e37b69eb4744a486d6713c73b929bb": {
"model_module": "@jupyter-widgets/controls",
"model_name": "ProgressStyleModel",
"model_module_version": "1.5.0",
"state": {
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "1.5.0",
"_model_name": "ProgressStyleModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "StyleView",
"bar_color": null,
"description_width": ""
}
},
"1963eb8c22e4439a822c215f7c758508": {
"model_module": "@jupyter-widgets/base",
"model_name": "LayoutModel",
"model_module_version": "1.2.0",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "1.2.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"overflow_x": null,
"overflow_y": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"38f4ad7d8fc04a29bf4dc1a498da09b2": {
"model_module": "@jupyter-widgets/controls",
"model_name": "DescriptionStyleModel",
"model_module_version": "1.5.0",
"state": {
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "1.5.0",
"_model_name": "DescriptionStyleModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "StyleView",
"description_width": ""
}
},
"4b22446521514bc292fec8fb6ce9e351": {
"model_module": "@jupyter-widgets/controls",
"model_name": "HBoxModel",
"model_module_version": "1.5.0",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "1.5.0",
"_model_name": "HBoxModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/controls",
"_view_module_version": "1.5.0",
"_view_name": "HBoxView",
"box_style": "",
"children": [
"IPY_MODEL_a524132f6c084615ae17a611efefe6c9",
"IPY_MODEL_84177bed13a245aaa2ee72a56837254f",
"IPY_MODEL_7f6660a43a6b4527b013465cadd770e2"
],
"layout": "IPY_MODEL_85b75301787b48fead13d09852ead9a7"
}
},
"a524132f6c084615ae17a611efefe6c9": {
"model_module": "@jupyter-widgets/controls",
"model_name": "HTMLModel",
"model_module_version": "1.5.0",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "1.5.0",
"_model_name": "HTMLModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/controls",
"_view_module_version": "1.5.0",
"_view_name": "HTMLView",
"description": "",
"description_tooltip": null,
"layout": "IPY_MODEL_9a6030d5f4fe4515a986d714bf4bf2c2",
"placeholder": "",
"style": "IPY_MODEL_5accf21b00da4b67a5a9854ec739a33c",
"value": "Downloading: 100%"
}
},
"84177bed13a245aaa2ee72a56837254f": {
"model_module": "@jupyter-widgets/controls",
"model_name": "FloatProgressModel",
"model_module_version": "1.5.0",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "1.5.0",
"_model_name": "FloatProgressModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/controls",
"_view_module_version": "1.5.0",
"_view_name": "ProgressView",
"bar_style": "success",
"description": "",
"description_tooltip": null,
"layout": "IPY_MODEL_f8ca8cefb6124d3ab83811bc0a14669a",
"max": 262028,
"min": 0,
"orientation": "horizontal",
"style": "IPY_MODEL_589cf0c169da44fc8291472f3a0f851d",
"value": 262028
}
},
"7f6660a43a6b4527b013465cadd770e2": {
"model_module": "@jupyter-widgets/controls",
"model_name": "HTMLModel",
"model_module_version": "1.5.0",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "1.5.0",
"_model_name": "HTMLModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/controls",
"_view_module_version": "1.5.0",
"_view_name": "HTMLView",
"description": "",
"description_tooltip": null,
"layout": "IPY_MODEL_b3c6557e79d74f4da1dbd82c7b41b9dd",
"placeholder": "",
"style": "IPY_MODEL_2efb493b811540a386353dbac1d5a37b",
"value": " 262k/262k [00:00<00:00, 1.57MB/s]"
}
},
"85b75301787b48fead13d09852ead9a7": {
"model_module": "@jupyter-widgets/base",
"model_name": "LayoutModel",
"model_module_version": "1.2.0",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "1.2.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"overflow_x": null,
"overflow_y": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"9a6030d5f4fe4515a986d714bf4bf2c2": {
"model_module": "@jupyter-widgets/base",
"model_name": "LayoutModel",
"model_module_version": "1.2.0",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "1.2.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"overflow_x": null,
"overflow_y": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"5accf21b00da4b67a5a9854ec739a33c": {
"model_module": "@jupyter-widgets/controls",
"model_name": "DescriptionStyleModel",
"model_module_version": "1.5.0",
"state": {
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "1.5.0",
"_model_name": "DescriptionStyleModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "StyleView",
"description_width": ""
}
},
"f8ca8cefb6124d3ab83811bc0a14669a": {
"model_module": "@jupyter-widgets/base",
"model_name": "LayoutModel",
"model_module_version": "1.2.0",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "1.2.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"overflow_x": null,
"overflow_y": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"589cf0c169da44fc8291472f3a0f851d": {
"model_module": "@jupyter-widgets/controls",
"model_name": "ProgressStyleModel",
"model_module_version": "1.5.0",
"state": {
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "1.5.0",
"_model_name": "ProgressStyleModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "StyleView",
"bar_color": null,
"description_width": ""
}
},
"b3c6557e79d74f4da1dbd82c7b41b9dd": {
"model_module": "@jupyter-widgets/base",
"model_name": "LayoutModel",
"model_module_version": "1.2.0",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "1.2.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"overflow_x": null,
"overflow_y": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"2efb493b811540a386353dbac1d5a37b": {
"model_module": "@jupyter-widgets/controls",
"model_name": "DescriptionStyleModel",
"model_module_version": "1.5.0",
"state": {
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "1.5.0",
"_model_name": "DescriptionStyleModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "StyleView",
"description_width": ""
}
},
"6064a9d5b5e449ababa07c270f5f4d59": {
"model_module": "@jupyter-widgets/controls",
"model_name": "HBoxModel",
"model_module_version": "1.5.0",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "1.5.0",
"_model_name": "HBoxModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/controls",
"_view_module_version": "1.5.0",
"_view_name": "HBoxView",
"box_style": "",
"children": [
"IPY_MODEL_6b5771b7cc4340dc9e79f70ec045a6bd",
"IPY_MODEL_0e193af610584ce5a0cd88dc2daa9d43",
"IPY_MODEL_c57f0510cf434baaafa2e7a6b221349c"
],
"layout": "IPY_MODEL_efbff15f803a43beb78f7f41d3a654fe"
}
},
"6b5771b7cc4340dc9e79f70ec045a6bd": {
"model_module": "@jupyter-widgets/controls",
"model_name": "HTMLModel",
"model_module_version": "1.5.0",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "1.5.0",
"_model_name": "HTMLModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/controls",
"_view_module_version": "1.5.0",
"_view_name": "HTMLView",
"description": "",
"description_tooltip": null,
"layout": "IPY_MODEL_f4559f9788854e5fa6b1f2194d2f59e9",
"placeholder": "",
"style": "IPY_MODEL_85d4491ba3e7403895cdd7c5598dc8eb",
"value": "Downloading: 100%"
}
},
"0e193af610584ce5a0cd88dc2daa9d43": {
"model_module": "@jupyter-widgets/controls",
"model_name": "FloatProgressModel",
"model_module_version": "1.5.0",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "1.5.0",
"_model_name": "FloatProgressModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/controls",
"_view_module_version": "1.5.0",
"_view_name": "ProgressView",
"bar_style": "success",
"description": "",
"description_tooltip": null,
"layout": "IPY_MODEL_b1cf2b49ec9a413d8d9bfbb1bdcef407",
"max": 154,
"min": 0,
"orientation": "horizontal",
"style": "IPY_MODEL_d0bb9c96cdad47eba50960714c513100",
"value": 154
}
},
"c57f0510cf434baaafa2e7a6b221349c": {
"model_module": "@jupyter-widgets/controls",
"model_name": "HTMLModel",
"model_module_version": "1.5.0",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "1.5.0",
"_model_name": "HTMLModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/controls",
"_view_module_version": "1.5.0",
"_view_name": "HTMLView",
"description": "",
"description_tooltip": null,
"layout": "IPY_MODEL_a7800a6b5aed4f789edf1a5e275742e7",
"placeholder": "",
"style": "IPY_MODEL_7235e6a9ecf64041b85ffdc3e8dd1340",
"value": " 154/154 [00:00<00:00, 4.42kB/s]"
}
},
"efbff15f803a43beb78f7f41d3a654fe": {
"model_module": "@jupyter-widgets/base",
"model_name": "LayoutModel",
"model_module_version": "1.2.0",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "1.2.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"overflow_x": null,
"overflow_y": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"f4559f9788854e5fa6b1f2194d2f59e9": {
"model_module": "@jupyter-widgets/base",
"model_name": "LayoutModel",
"model_module_version": "1.2.0",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "1.2.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"overflow_x": null,
"overflow_y": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"85d4491ba3e7403895cdd7c5598dc8eb": {
"model_module": "@jupyter-widgets/controls",
"model_name": "DescriptionStyleModel",
"model_module_version": "1.5.0",
"state": {
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "1.5.0",
"_model_name": "DescriptionStyleModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "StyleView",
"description_width": ""
}
},
"b1cf2b49ec9a413d8d9bfbb1bdcef407": {
"model_module": "@jupyter-widgets/base",
"model_name": "LayoutModel",
"model_module_version": "1.2.0",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "1.2.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"overflow_x": null,
"overflow_y": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"d0bb9c96cdad47eba50960714c513100": {
"model_module": "@jupyter-widgets/controls",
"model_name": "ProgressStyleModel",
"model_module_version": "1.5.0",
"state": {
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "1.5.0",
"_model_name": "ProgressStyleModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "StyleView",
"bar_color": null,
"description_width": ""
}
},
"a7800a6b5aed4f789edf1a5e275742e7": {
"model_module": "@jupyter-widgets/base",
"model_name": "LayoutModel",
"model_module_version": "1.2.0",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "1.2.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"overflow_x": null,
"overflow_y": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"7235e6a9ecf64041b85ffdc3e8dd1340": {
"model_module": "@jupyter-widgets/controls",
"model_name": "DescriptionStyleModel",
"model_module_version": "1.5.0",
"state": {
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "1.5.0",
"_model_name": "DescriptionStyleModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "StyleView",
"description_width": ""
}
},
"327f37f4a8f944c7a5a3a2b011c04c9d": {
"model_module": "@jupyter-widgets/controls",
"model_name": "HBoxModel",
"model_module_version": "1.5.0",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "1.5.0",
"_model_name": "HBoxModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/controls",
"_view_module_version": "1.5.0",
"_view_name": "HBoxView",
"box_style": "",
"children": [
"IPY_MODEL_5fc00de6cd824a528933bb54ef82b259",
"IPY_MODEL_6f14c7cb27ff4b3c8c0987e362a9c7bb",
"IPY_MODEL_1502688dfa58465a98dd23553635cba5"
],
"layout": "IPY_MODEL_8a684a760c414b25abb1302a99931a86"
}
},
"5fc00de6cd824a528933bb54ef82b259": {
"model_module": "@jupyter-widgets/controls",
"model_name": "HTMLModel",
"model_module_version": "1.5.0",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "1.5.0",
"_model_name": "HTMLModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/controls",
"_view_module_version": "1.5.0",
"_view_name": "HTMLView",
"description": "",
"description_tooltip": null,
"layout": "IPY_MODEL_e3ae8e77998247e7a219528a789239f5",
"placeholder": "",
"style": "IPY_MODEL_14f2b1f8fe0a411bbc217acb4c2de048",
"value": "Downloading: 100%"
}
},
"6f14c7cb27ff4b3c8c0987e362a9c7bb": {
"model_module": "@jupyter-widgets/controls",
"model_name": "FloatProgressModel",
"model_module_version": "1.5.0",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "1.5.0",
"_model_name": "FloatProgressModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/controls",
"_view_module_version": "1.5.0",
"_view_name": "ProgressView",
"bar_style": "success",
"description": "",
"description_tooltip": null,
"layout": "IPY_MODEL_18dfda936881409d9fb54ef6a1ae9c2a",
"max": 490,
"min": 0,
"orientation": "horizontal",
"style": "IPY_MODEL_a9207b88d52245429e6748cfbefa7a94",
"value": 490
}
},
"1502688dfa58465a98dd23553635cba5": {
"model_module": "@jupyter-widgets/controls",
"model_name": "HTMLModel",
"model_module_version": "1.5.0",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "1.5.0",
"_model_name": "HTMLModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/controls",
"_view_module_version": "1.5.0",
"_view_name": "HTMLView",
"description": "",
"description_tooltip": null,
"layout": "IPY_MODEL_e2f714732e41433ab7138aeacee96f48",
"placeholder": "",
"style": "IPY_MODEL_bf9a24fe77f44eea827e1a8af8d576b1",
"value": " 490/490 [00:00<00:00, 15.9kB/s]"
}
},
"8a684a760c414b25abb1302a99931a86": {
"model_module": "@jupyter-widgets/base",
"model_name": "LayoutModel",
"model_module_version": "1.2.0",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "1.2.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"overflow_x": null,
"overflow_y": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"e3ae8e77998247e7a219528a789239f5": {
"model_module": "@jupyter-widgets/base",
"model_name": "LayoutModel",
"model_module_version": "1.2.0",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "1.2.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"overflow_x": null,
"overflow_y": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"14f2b1f8fe0a411bbc217acb4c2de048": {
"model_module": "@jupyter-widgets/controls",
"model_name": "DescriptionStyleModel",
"model_module_version": "1.5.0",
"state": {
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "1.5.0",
"_model_name": "DescriptionStyleModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "StyleView",
"description_width": ""
}
},
"18dfda936881409d9fb54ef6a1ae9c2a": {
"model_module": "@jupyter-widgets/base",
"model_name": "LayoutModel",
"model_module_version": "1.2.0",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "1.2.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"overflow_x": null,
"overflow_y": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"a9207b88d52245429e6748cfbefa7a94": {
"model_module": "@jupyter-widgets/controls",
"model_name": "ProgressStyleModel",
"model_module_version": "1.5.0",
"state": {
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "1.5.0",
"_model_name": "ProgressStyleModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "StyleView",
"bar_color": null,
"description_width": ""
}
},
"e2f714732e41433ab7138aeacee96f48": {
"model_module": "@jupyter-widgets/base",
"model_name": "LayoutModel",
"model_module_version": "1.2.0",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "1.2.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"overflow_x": null,
"overflow_y": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"bf9a24fe77f44eea827e1a8af8d576b1": {
"model_module": "@jupyter-widgets/controls",
"model_name": "DescriptionStyleModel",
"model_module_version": "1.5.0",
"state": {
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "1.5.0",
"_model_name": "DescriptionStyleModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "StyleView",
"description_width": ""
}
}
}
}
},
"cells": [
{
"cell_type": "code",
"execution_count": 1,
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/"
},
"id": "F93t2eeQt9Xm",
"outputId": "b3dfd857-9ce3-492a-d282-d3d060cdad5d"
},
"outputs": [
{
"output_type": "stream",
"name": "stdout",
"text": [
"\u001b[K |████████████████████████████████| 2.0 MB 4.8 MB/s \n",
"\u001b[K |████████████████████████████████| 880 kB 37.5 MB/s \n",
"\u001b[K |████████████████████████████████| 3.3 MB 35.2 MB/s \n",
"\u001b[?25h Building wheel for sacremoses (setup.py) ... \u001b[?25l\u001b[?25hdone\n"
]
}
],
"source": [
"!pip install -q transformers==4.4.2"
]
},
{
"cell_type": "code",
"source": [
"import torch\n",
"torch.__version__"
],
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/",
"height": 36
},
"id": "Ztvc8MFgu0wZ",
"outputId": "e576b201-a7ed-4e76-bf47-913f85decfe8"
},
"execution_count": 2,
"outputs": [
{
"output_type": "execute_result",
"data": {
"text/plain": [
"'1.13.0+cu116'"
],
"application/vnd.google.colaboratory.intrinsic+json": {
"type": "string"
}
},
"metadata": {},
"execution_count": 2
}
]
},
{
"cell_type": "code",
"source": [
"!pip install torch-scatter -f https://pytorch-geometric.com/whl/torch-1.8.0+cu101.html"
],
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/"
},
"id": "E8XpG6XRu0zI",
"outputId": "c1ecb859-5dd9-4b7e-e5ca-e5c7197abc39"
},
"execution_count": 3,
"outputs": [
{
"output_type": "stream",
"name": "stdout",
"text": [
"Looking in indexes: https://pypi.org/simple, https://us-python.pkg.dev/colab-wheels/public/simple/\n",
"Looking in links: https://pytorch-geometric.com/whl/torch-1.8.0+cu101.html\n",
"Collecting torch-scatter\n",
" Downloading torch_scatter-2.1.0.tar.gz (106 kB)\n",
"\u001b[K |████████████████████████████████| 106 kB 5.2 MB/s \n",
"\u001b[?25hBuilding wheels for collected packages: torch-scatter\n",
" Building wheel for torch-scatter (setup.py) ... \u001b[?25l\u001b[?25hdone\n",
" Created wheel for torch-scatter: filename=torch_scatter-2.1.0-cp38-cp38-linux_x86_64.whl size=477429 sha256=03e935c7a6a0484b6aba91736600ada76361332852ebe414ae6c1c1fec021451\n",
" Stored in directory: /root/.cache/pip/wheels/41/7f/4f/cf072bea3b6efe4561de2db3603ebbd8718c134c24caab8281\n",
"Successfully built torch-scatter\n",
"Installing collected packages: torch-scatter\n",
"Successfully installed torch-scatter-2.1.0\n"
]
}
]
},
{
"cell_type": "code",
"source": [
"from transformers import pipeline\n",
"import pandas as pd"
],
"metadata": {
"id": "xd_SmhcWu02A"
},
"execution_count": 4,
"outputs": []
},
{
"cell_type": "code",
"source": [
"tqa = pipeline(task=\"table-question-answering\",model=\"google/tapas-base-finetuned-wtq\")"
],
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/",
"height": 177,
"referenced_widgets": [
"809cdba5a2714815a8a384f742947811",
"fb42e780c4a54066a46476e66ab9a596",
"28e48cc3651a42c994e14df80a182f78",
"7adb13fede4f4fbdb0a836ef494c52fc",
"7c5a7993faa940c5b34489aeea90a3eb",
"d4bfc543c3644f82a357e973b64bc8a8",
"72fb573f2cfe4e5ba5a419e0c5ded7e6",
"da83ae4b20be457aa77808ba175c88c7",
"bb624fe65d84454e95b9c5da8ab85b40",
"f7eff88e134742d6ac34207d459c88c7",
"49682e6d3b8a4a30b7a0c9010e2b2987",
"4526579e76b144179877b0a1f3ac31cc",
"d10455ab1c9e4e0e8049e4886c062c35",
"ff2f5c3ee2fe4c0982afaa6734edca2d",
"4440456c61a743558c3a08a74ef76b89",
"a20b91acbe9d4963a80aacf17162629d",
"366f00a510b542c18a465acee6634833",
"b0f7f63452f14656a0bbecf54a94e71a",
"fac4f183b6404073896b1cae65f92a27",
"f0e37b69eb4744a486d6713c73b929bb",
"1963eb8c22e4439a822c215f7c758508",
"38f4ad7d8fc04a29bf4dc1a498da09b2",
"4b22446521514bc292fec8fb6ce9e351",
"a524132f6c084615ae17a611efefe6c9",
"84177bed13a245aaa2ee72a56837254f",
"7f6660a43a6b4527b013465cadd770e2",
"85b75301787b48fead13d09852ead9a7",
"9a6030d5f4fe4515a986d714bf4bf2c2",
"5accf21b00da4b67a5a9854ec739a33c",
"f8ca8cefb6124d3ab83811bc0a14669a",
"589cf0c169da44fc8291472f3a0f851d",
"b3c6557e79d74f4da1dbd82c7b41b9dd",
"2efb493b811540a386353dbac1d5a37b",
"6064a9d5b5e449ababa07c270f5f4d59",
"6b5771b7cc4340dc9e79f70ec045a6bd",
"0e193af610584ce5a0cd88dc2daa9d43",
"c57f0510cf434baaafa2e7a6b221349c",
"efbff15f803a43beb78f7f41d3a654fe",
"f4559f9788854e5fa6b1f2194d2f59e9",
"85d4491ba3e7403895cdd7c5598dc8eb",
"b1cf2b49ec9a413d8d9bfbb1bdcef407",
"d0bb9c96cdad47eba50960714c513100",
"a7800a6b5aed4f789edf1a5e275742e7",
"7235e6a9ecf64041b85ffdc3e8dd1340",
"327f37f4a8f944c7a5a3a2b011c04c9d",
"5fc00de6cd824a528933bb54ef82b259",
"6f14c7cb27ff4b3c8c0987e362a9c7bb",
"1502688dfa58465a98dd23553635cba5",
"8a684a760c414b25abb1302a99931a86",
"e3ae8e77998247e7a219528a789239f5",
"14f2b1f8fe0a411bbc217acb4c2de048",
"18dfda936881409d9fb54ef6a1ae9c2a",
"a9207b88d52245429e6748cfbefa7a94",
"e2f714732e41433ab7138aeacee96f48",
"bf9a24fe77f44eea827e1a8af8d576b1"
]
},
"id": "1r9Z2vOQu04w",
"outputId": "9c466428-6306-49d4-e78d-d1a25d040701"
},
"execution_count": 5,
"outputs": [
{
"output_type": "display_data",
"data": {
"text/plain": [
"Downloading: 0%| | 0.00/1.66k [00:00<?, ?B/s]"
],
"application/vnd.jupyter.widget-view+json": {
"version_major": 2,
"version_minor": 0,
"model_id": "809cdba5a2714815a8a384f742947811"
}
},
"metadata": {}
},
{
"output_type": "display_data",
"data": {
"text/plain": [
"Downloading: 0%| | 0.00/443M [00:00<?, ?B/s]"
],
"application/vnd.jupyter.widget-view+json": {
"version_major": 2,
"version_minor": 0,
"model_id": "4526579e76b144179877b0a1f3ac31cc"
}
},
"metadata": {}
},
{
"output_type": "display_data",
"data": {
"text/plain": [
"Downloading: 0%| | 0.00/262k [00:00<?, ?B/s]"
],
"application/vnd.jupyter.widget-view+json": {
"version_major": 2,
"version_minor": 0,
"model_id": "4b22446521514bc292fec8fb6ce9e351"
}
},
"metadata": {}
},
{
"output_type": "display_data",
"data": {
"text/plain": [
"Downloading: 0%| | 0.00/154 [00:00<?, ?B/s]"
],
"application/vnd.jupyter.widget-view+json": {
"version_major": 2,
"version_minor": 0,
"model_id": "6064a9d5b5e449ababa07c270f5f4d59"
}
},
"metadata": {}
},
{
"output_type": "display_data",
"data": {
"text/plain": [
"Downloading: 0%| | 0.00/490 [00:00<?, ?B/s]"
],
"application/vnd.jupyter.widget-view+json": {
"version_major": 2,
"version_minor": 0,
"model_id": "327f37f4a8f944c7a5a3a2b011c04c9d"
}
},
"metadata": {}
}
]
},
{
"cell_type": "code",
"source": [
"table=pd.read_csv(\"data.csv\")"
],
"metadata": {
"id": "GQxutdumu070"
},
"execution_count": 8,
"outputs": []
},
{
"cell_type": "code",
"source": [
"table = table.astype(str)"
],
"metadata": {
"id": "amnKLrHVxIRK"
},
"execution_count": 9,
"outputs": []
},
{
"cell_type": "code",
"source": [
"table"
],
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/",
"height": 363
},
"id": "P9vO-gHIxIUp",
"outputId": "663770f0-72a6-4b25-c2c2-2346caa14c1b"
},
"execution_count": 10,
"outputs": [
{
"output_type": "execute_result",
"data": {
"text/plain": [
" Pos Player Team Span Innings Runs \\\n",
"0 1 Sachin Tendulkar India 1989-2012 452 18426 \n",
"1 2 Kumar Sangakkara Sri Lanka 2000-2015 380 14234 \n",
"2 3 Ricky Ponting Australia 1995-2012 365 13704 \n",
"3 4 Sanath Jayasuriya Sri Lanka 1989-2011 433 13430 \n",
"4 5 Mahela Jayawardene Sri Lanka 1998-2015 418 12650 \n",
"5 6 Virat Kohli India 2008-2020 236 11867 \n",
"6 7 Inzamam-ul-Haq Pakistan 1991-2007 350 11739 \n",
"7 8 Jacques Kallis South Africa 1996-2014 314 11579 \n",
"8 9 Saurav Ganguly India 1992-2007 300 11363 \n",
"9 10 Rahul Dravid India 1996-2011 318 10889 \n",
"\n",
" Highest Score Average Strike Rate \n",
"0 200 44.83 86.23 \n",
"1 169 41.98 78.86 \n",
"2 164 42.03 80.39 \n",
"3 189 32.36 91.2 \n",
"4 144 33.37 78.96 \n",
"5 183 59.85 93.39 \n",
"6 137 39.52 74.24 \n",
"7 139 44.36 72.89 \n",
"8 183 41.02 73.7 \n",
"9 153 39.16 71.24 "
],
"text/html": [
"\n",
" <div id=\"df-27a8bff7-f86e-43f1-94fb-236a57b7621f\">\n",
" <div class=\"colab-df-container\">\n",
" <div>\n",
"<style scoped>\n",
" .dataframe tbody tr th:only-of-type {\n",
" vertical-align: middle;\n",
" }\n",
"\n",
" .dataframe tbody tr th {\n",
" vertical-align: top;\n",
" }\n",
"\n",
" .dataframe thead th {\n",
" text-align: right;\n",
" }\n",
"</style>\n",
"<table border=\"1\" class=\"dataframe\">\n",
" <thead>\n",
" <tr style=\"text-align: right;\">\n",
" <th></th>\n",
" <th>Pos</th>\n",
" <th>Player</th>\n",
" <th>Team</th>\n",
" <th>Span</th>\n",
" <th>Innings</th>\n",
" <th>Runs</th>\n",
" <th>Highest Score</th>\n",
" <th>Average</th>\n",
" <th>Strike Rate</th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <th>0</th>\n",
" <td>1</td>\n",
" <td>Sachin Tendulkar</td>\n",
" <td>India</td>\n",
" <td>1989-2012</td>\n",
" <td>452</td>\n",
" <td>18426</td>\n",
" <td>200</td>\n",
" <td>44.83</td>\n",
" <td>86.23</td>\n",
" </tr>\n",
" <tr>\n",
" <th>1</th>\n",
" <td>2</td>\n",
" <td>Kumar Sangakkara</td>\n",
" <td>Sri Lanka</td>\n",
" <td>2000-2015</td>\n",
" <td>380</td>\n",
" <td>14234</td>\n",
" <td>169</td>\n",
" <td>41.98</td>\n",
" <td>78.86</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2</th>\n",
" <td>3</td>\n",
" <td>Ricky Ponting</td>\n",
" <td>Australia</td>\n",
" <td>1995-2012</td>\n",
" <td>365</td>\n",
" <td>13704</td>\n",
" <td>164</td>\n",
" <td>42.03</td>\n",
" <td>80.39</td>\n",
" </tr>\n",
" <tr>\n",
" <th>3</th>\n",
" <td>4</td>\n",
" <td>Sanath Jayasuriya</td>\n",
" <td>Sri Lanka</td>\n",
" <td>1989-2011</td>\n",
" <td>433</td>\n",
" <td>13430</td>\n",
" <td>189</td>\n",
" <td>32.36</td>\n",
" <td>91.2</td>\n",
" </tr>\n",
" <tr>\n",
" <th>4</th>\n",
" <td>5</td>\n",
" <td>Mahela Jayawardene</td>\n",
" <td>Sri Lanka</td>\n",
" <td>1998-2015</td>\n",
" <td>418</td>\n",
" <td>12650</td>\n",
" <td>144</td>\n",
" <td>33.37</td>\n",
" <td>78.96</td>\n",
" </tr>\n",
" <tr>\n",
" <th>5</th>\n",
" <td>6</td>\n",
" <td>Virat Kohli</td>\n",
" <td>India</td>\n",
" <td>2008-2020</td>\n",
" <td>236</td>\n",
" <td>11867</td>\n",
" <td>183</td>\n",
" <td>59.85</td>\n",
" <td>93.39</td>\n",
" </tr>\n",
" <tr>\n",
" <th>6</th>\n",
" <td>7</td>\n",
" <td>Inzamam-ul-Haq</td>\n",
" <td>Pakistan</td>\n",
" <td>1991-2007</td>\n",
" <td>350</td>\n",
" <td>11739</td>\n",
" <td>137</td>\n",
" <td>39.52</td>\n",
" <td>74.24</td>\n",
" </tr>\n",
" <tr>\n",
" <th>7</th>\n",
" <td>8</td>\n",
" <td>Jacques Kallis</td>\n",
" <td>South Africa</td>\n",
" <td>1996-2014</td>\n",
" <td>314</td>\n",
" <td>11579</td>\n",
" <td>139</td>\n",
" <td>44.36</td>\n",
" <td>72.89</td>\n",
" </tr>\n",
" <tr>\n",
" <th>8</th>\n",
" <td>9</td>\n",
" <td>Saurav Ganguly</td>\n",
" <td>India</td>\n",
" <td>1992-2007</td>\n",
" <td>300</td>\n",
" <td>11363</td>\n",
" <td>183</td>\n",
" <td>41.02</td>\n",
" <td>73.7</td>\n",
" </tr>\n",
" <tr>\n",
" <th>9</th>\n",
" <td>10</td>\n",
" <td>Rahul Dravid</td>\n",
" <td>India</td>\n",
" <td>1996-2011</td>\n",
" <td>318</td>\n",
" <td>10889</td>\n",
" <td>153</td>\n",
" <td>39.16</td>\n",
" <td>71.24</td>\n",
" </tr>\n",
" </tbody>\n",
"</table>\n",
"</div>\n",
" <button class=\"colab-df-convert\" onclick=\"convertToInteractive('df-27a8bff7-f86e-43f1-94fb-236a57b7621f')\"\n",
" title=\"Convert this dataframe to an interactive table.\"\n",
" style=\"display:none;\">\n",
" \n",
" <svg xmlns=\"http://www.w3.org/2000/svg\" height=\"24px\"viewBox=\"0 0 24 24\"\n",
" width=\"24px\">\n",
" <path d=\"M0 0h24v24H0V0z\" fill=\"none\"/>\n",
" <path d=\"M18.56 5.44l.94 2.06.94-2.06 2.06-.94-2.06-.94-.94-2.06-.94 2.06-2.06.94zm-11 1L8.5 8.5l.94-2.06 2.06-.94-2.06-.94L8.5 2.5l-.94 2.06-2.06.94zm10 10l.94 2.06.94-2.06 2.06-.94-2.06-.94-.94-2.06-.94 2.06-2.06.94z\"/><path d=\"M17.41 7.96l-1.37-1.37c-.4-.4-.92-.59-1.43-.59-.52 0-1.04.2-1.43.59L10.3 9.45l-7.72 7.72c-.78.78-.78 2.05 0 2.83L4 21.41c.39.39.9.59 1.41.59.51 0 1.02-.2 1.41-.59l7.78-7.78 2.81-2.81c.8-.78.8-2.07 0-2.86zM5.41 20L4 18.59l7.72-7.72 1.47 1.35L5.41 20z\"/>\n",
" </svg>\n",
" </button>\n",
" \n",
" <style>\n",
" .colab-df-container {\n",
" display:flex;\n",
" flex-wrap:wrap;\n",
" gap: 12px;\n",
" }\n",
"\n",
" .colab-df-convert {\n",
" background-color: #E8F0FE;\n",
" border: none;\n",
" border-radius: 50%;\n",
" cursor: pointer;\n",
" display: none;\n",
" fill: #1967D2;\n",
" height: 32px;\n",
" padding: 0 0 0 0;\n",
" width: 32px;\n",
" }\n",
"\n",
" .colab-df-convert:hover {\n",
" background-color: #E2EBFA;\n",
" box-shadow: 0px 1px 2px rgba(60, 64, 67, 0.3), 0px 1px 3px 1px rgba(60, 64, 67, 0.15);\n",
" fill: #174EA6;\n",
" }\n",
"\n",
" [theme=dark] .colab-df-convert {\n",
" background-color: #3B4455;\n",
" fill: #D2E3FC;\n",
" }\n",
"\n",
" [theme=dark] .colab-df-convert:hover {\n",
" background-color: #434B5C;\n",
" box-shadow: 0px 1px 3px 1px rgba(0, 0, 0, 0.15);\n",
" filter: drop-shadow(0px 1px 2px rgba(0, 0, 0, 0.3));\n",
" fill: #FFFFFF;\n",
" }\n",
" </style>\n",
"\n",
" <script>\n",
" const buttonEl =\n",
" document.querySelector('#df-27a8bff7-f86e-43f1-94fb-236a57b7621f button.colab-df-convert');\n",
" buttonEl.style.display =\n",
" google.colab.kernel.accessAllowed ? 'block' : 'none';\n",
"\n",
" async function convertToInteractive(key) {\n",
" const element = document.querySelector('#df-27a8bff7-f86e-43f1-94fb-236a57b7621f');\n",
" const dataTable =\n",
" await google.colab.kernel.invokeFunction('convertToInteractive',\n",
" [key], {});\n",
" if (!dataTable) return;\n",
"\n",
" const docLinkHtml = 'Like what you see? Visit the ' +\n",
" '<a target=\"_blank\" href=https://colab.research.google.com/notebooks/data_table.ipynb>data table notebook</a>'\n",
" + ' to learn more about interactive tables.';\n",
" element.innerHTML = '';\n",
" dataTable['output_type'] = 'display_data';\n",
" await google.colab.output.renderOutput(dataTable, element);\n",
" const docLink = document.createElement('div');\n",
" docLink.innerHTML = docLinkHtml;\n",
" element.appendChild(docLink);\n",
" }\n",
" </script>\n",
" </div>\n",
" </div>\n",
" "
]
},
"metadata": {},
"execution_count": 10
}
]
},
{
"cell_type": "code",
"source": [
"query = \"Who has scored the highest runs?\"\n",
"print(tqa(table=table,query=query)[\"answer\"])"
],
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/"
},
"id": "VsQ6vnWexIXW",
"outputId": "c9a78b2f-1cdf-4774-b936-e03d82a42cc7"
},
"execution_count": 11,
"outputs": [
{
"output_type": "stream",
"name": "stdout",
"text": [
"Sachin Tendulkar\n"
]
}
]
},
{
"cell_type": "code",
"source": [],
"metadata": {
"id": "3goEexBYu0_I"
},
"execution_count": null,
"outputs": []
}
]
}
.
Hanya sekedar mencatat aja disini. Semoga bermanfaat ….
Bagi sahabat yang membutuhkan bantuan Whitecyber Team silahkan hubungi team kami di Whitecyber.co.id