From deaee2afe8724e8e836b0d6ff63337e9d91cef89 Mon Sep 17 00:00:00 2001 From: James Jang Date: Sat, 11 Nov 2023 15:57:50 +0900 Subject: [PATCH] Add line breaks to improve image alignment in README This commit introduces line breaks before each image in the README.md to ensure that accompanying text appears above the image, regardless of the screen size or when viewed in full-screen mode. This improves the readability and layout consistency across different devices and resolutions. Changes made: - Inserted `
` tags before the image links to control the text-to-image flow. - Tested on various screen sizes to confirm the improved alignment. - Verified that the markdown renders correctly and maintains the intended layout. --- 01-introduction-to-genai/README.md | 23 +++++++++++++++++++---- 1 file changed, 19 insertions(+), 4 deletions(-) diff --git a/01-introduction-to-genai/README.md b/01-introduction-to-genai/README.md index 7de963d91..4dd0944dd 100644 --- a/01-introduction-to-genai/README.md +++ b/01-introduction-to-genai/README.md @@ -90,19 +90,34 @@ The input of a large language model is known as prompt, while the output is know * An **instruction** specifying the type of output we expect from the model. This instruction sometimes might embed some examples or some additional data. 1. Summarization of an article, book, product reviews and more, along with extraction of insights from unstructured data. + ![Example of summarization](./images/summarization-example.png?WT.mc_id=academic-105485-koreyst) +
+ 2. Creative ideation and design of an article, an essay, an assignment or more. + ![Example of creative writing](./images/creative-writing-example.png?WT.mc_id=academic-105485-koreyst) +
+ * A **question**, asked in the form of a conversation with an agent. - ![Example of conversation](./images/conversation-example.png?WT.mc_id=academic-105485-koreyst) + +![Example of conversation](./images/conversation-example.png?WT.mc_id=academic-105485-koreyst) -* A chunk of **text to complete**, which implicitly is an ask for writing assistance. - ![Example of text completion](./images/text-completion-example.png?WT.mc_id=academic-105485-koreyst) +
+ +* A chunk of **text to complete**, which implicitly is an ask for writing assistance. + +![Example of text completion](./images/text-completion-example.png?WT.mc_id=academic-105485-koreyst) + +
* A chunk of **code** together with the ask of explaining and documenting it, or a comment asking to generate a piece of code performing a specific task. - ![Coding example](./images/coding-example.png?WT.mc_id=academic-105485-koreyst) + +![Coding example](./images/coding-example.png?WT.mc_id=academic-105485-koreyst) + +
The examples above are quite simple and don’t want to be an exhaustive demonstration of Large Language Models capabilities. They just want to show the potential of using generative AI, in particular but not limited to educational context.