Skip to content

Commit

Permalink
llmapps lesson 3
Browse files Browse the repository at this point in the history
  • Loading branch information
kldarek committed May 26, 2023
1 parent d5dc260 commit 8b5a1df
Show file tree
Hide file tree
Showing 7 changed files with 1,049 additions and 9 deletions.
54 changes: 45 additions & 9 deletions llm-apps-course/Generation.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,6 @@
"# Installation"
]
},
{
"cell_type": "code",
"execution_count": 72,
"metadata": {},
"outputs": [],
"source": [
"!pip install --upgrade openai wandb -qq"
]
},
{
"cell_type": "code",
"execution_count": 73,
Expand Down Expand Up @@ -756,6 +747,51 @@
"wandb.finish()"
]
},
{
"cell_type": "code",
"execution_count": 101,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"'\\nHow can I share my report with my team members in a public project?\\n'"
]
},
"execution_count": 101,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"parsed_generations[8]['question']"
]
},
{
"cell_type": "code",
"execution_count": 103,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"('\\n'\n",
" 'To share a report with your team members in a public project, select the '\n",
" 'Share button on the upper right hand corner of the report. You can either '\n",
" 'provide an email account or copy the magic link. Users invited by email will '\n",
" 'need to log into Weights & Biases to view the report. Users who are given a '\n",
" 'magic link do not need to log in to Weights & Biases to view the report. '\n",
" \"It's important to note that shared reports are view-only, and only the \"\n",
" 'administrator or the member who created the report can toggle permissions '\n",
" 'between edit or view access for other team members.')\n"
]
}
],
"source": [
"pprint(parsed_generations[8]['answer'])"
]
},
{
"cell_type": "code",
"execution_count": null,
Expand Down
Loading

0 comments on commit 8b5a1df

Please sign in to comment.