2022-10-26 05:00:33 +00:00
|
|
|
{
|
|
|
|
"cells": [
|
2022-11-14 04:13:23 +00:00
|
|
|
{
|
|
|
|
"cell_type": "markdown",
|
|
|
|
"id": "959300d4",
|
|
|
|
"metadata": {},
|
|
|
|
"source": [
|
|
|
|
"# HuggingFace Hub\n",
|
|
|
|
"\n",
|
|
|
|
"This example showcases how to connect to the HuggingFace Hub."
|
|
|
|
]
|
|
|
|
},
|
2022-10-26 05:00:33 +00:00
|
|
|
{
|
|
|
|
"cell_type": "code",
|
|
|
|
"execution_count": 1,
|
|
|
|
"id": "3acf0069",
|
|
|
|
"metadata": {},
|
|
|
|
"outputs": [
|
|
|
|
{
|
2022-10-26 05:05:11 +00:00
|
|
|
"name": "stdout",
|
|
|
|
"output_type": "stream",
|
|
|
|
"text": [
|
2022-11-09 02:08:46 +00:00
|
|
|
"The Seattle Seahawks won the Super Bowl in 2010. Justin Beiber was born in 2010. The\n"
|
2022-10-26 05:00:33 +00:00
|
|
|
]
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"source": [
|
2022-11-20 04:32:45 +00:00
|
|
|
"from langchain import PromptTemplate, HuggingFaceHub, LLMChain\n",
|
2022-10-26 05:00:33 +00:00
|
|
|
"\n",
|
|
|
|
"template = \"\"\"Question: {question}\n",
|
|
|
|
"\n",
|
|
|
|
"Answer: Let's think step by step.\"\"\"\n",
|
2022-11-20 04:32:45 +00:00
|
|
|
"prompt = PromptTemplate(template=template, input_variables=[\"question\"])\n",
|
2022-11-09 02:08:46 +00:00
|
|
|
"llm_chain = LLMChain(prompt=prompt, llm=HuggingFaceHub(repo_id=\"google/flan-t5-xl\", model_kwargs={\"temperature\":1e-10}))\n",
|
2022-10-26 05:00:33 +00:00
|
|
|
"\n",
|
|
|
|
"question = \"What NFL team won the Super Bowl in the year Justin Beiber was born?\"\n",
|
|
|
|
"\n",
|
2022-11-14 04:13:23 +00:00
|
|
|
"print(llm_chain.run(question))"
|
2022-10-26 05:00:33 +00:00
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"cell_type": "code",
|
|
|
|
"execution_count": null,
|
|
|
|
"id": "ae4559c7",
|
|
|
|
"metadata": {},
|
|
|
|
"outputs": [],
|
|
|
|
"source": []
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"metadata": {
|
|
|
|
"kernelspec": {
|
|
|
|
"display_name": "Python 3 (ipykernel)",
|
|
|
|
"language": "python",
|
|
|
|
"name": "python3"
|
|
|
|
},
|
|
|
|
"language_info": {
|
|
|
|
"codemirror_mode": {
|
|
|
|
"name": "ipython",
|
|
|
|
"version": 3
|
|
|
|
},
|
|
|
|
"file_extension": ".py",
|
|
|
|
"mimetype": "text/x-python",
|
|
|
|
"name": "python",
|
|
|
|
"nbconvert_exporter": "python",
|
|
|
|
"pygments_lexer": "ipython3",
|
2022-11-20 04:32:45 +00:00
|
|
|
"version": "3.8.7"
|
2022-10-26 05:00:33 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
"nbformat": 4,
|
|
|
|
"nbformat_minor": 5
|
|
|
|
}
|