From f87f1b3bbe579022fb37d1f9f2f9eec3fd4a0a1a Mon Sep 17 00:00:00 2001 From: Javier Luraschi Date: Wed, 28 Aug 2024 08:57:19 -0600 Subject: [PATCH] rename concepts to genai docs --- website/learn/concepts/_category_.json | 4 ---- website/learn/concepts/index.md | 21 ------------------ website/learn/genai/_category_.json | 4 ++++ .../{concepts => genai}/dnn-imagenet.jpg | Bin .../{concepts => genai}/dnn-newton-method.png | Bin .../dnn-nyt-perceptron.jpeg | Bin .../dnn-perceptron-multilayered.png | Bin website/learn/{concepts => genai}/dnn.md | 0 website/learn/genai/index.md | 21 ++++++++++++++++++ .../{concepts => genai}/llm-autoencoder.png | Bin .../learn/{concepts => genai}/llm-gpt-1.png | Bin .../{concepts => genai}/llm-transformer.png | Bin website/learn/{concepts => genai}/llm.md | 0 website/learn/{concepts => genai}/prompts.md | 0 .../{concepts => genai}/sd-dalle-compare.png | Bin .../sd-denoise-process.png | Bin .../{concepts => genai}/sd-flux-hal9.png | Bin website/learn/{concepts => genai}/sd-gan.png | Bin .../sd-latent-diffusion.png | Bin .../{concepts => genai}/sd-style-gan.png | Bin website/learn/{concepts => genai}/sd.md | 0 21 files changed, 25 insertions(+), 25 deletions(-) delete mode 100644 website/learn/concepts/_category_.json delete mode 100644 website/learn/concepts/index.md create mode 100644 website/learn/genai/_category_.json rename website/learn/{concepts => genai}/dnn-imagenet.jpg (100%) rename website/learn/{concepts => genai}/dnn-newton-method.png (100%) rename website/learn/{concepts => genai}/dnn-nyt-perceptron.jpeg (100%) rename website/learn/{concepts => genai}/dnn-perceptron-multilayered.png (100%) rename website/learn/{concepts => genai}/dnn.md (100%) create mode 100644 website/learn/genai/index.md rename website/learn/{concepts => genai}/llm-autoencoder.png (100%) rename website/learn/{concepts => genai}/llm-gpt-1.png (100%) rename website/learn/{concepts => genai}/llm-transformer.png (100%) rename website/learn/{concepts => genai}/llm.md (100%) rename website/learn/{concepts => genai}/prompts.md (100%) rename website/learn/{concepts => genai}/sd-dalle-compare.png (100%) rename website/learn/{concepts => genai}/sd-denoise-process.png (100%) rename website/learn/{concepts => genai}/sd-flux-hal9.png (100%) rename website/learn/{concepts => genai}/sd-gan.png (100%) rename website/learn/{concepts => genai}/sd-latent-diffusion.png (100%) rename website/learn/{concepts => genai}/sd-style-gan.png (100%) rename website/learn/{concepts => genai}/sd.md (100%) diff --git a/website/learn/concepts/_category_.json b/website/learn/concepts/_category_.json deleted file mode 100644 index 55a0e01e..00000000 --- a/website/learn/concepts/_category_.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "label": "Concepts", - "position": 3, -} \ No newline at end of file diff --git a/website/learn/concepts/index.md b/website/learn/concepts/index.md deleted file mode 100644 index a3834936..00000000 --- a/website/learn/concepts/index.md +++ /dev/null @@ -1,21 +0,0 @@ -# Generative AI - -Generative Artificial Intelligence (**GenAI**) is a version of Artificial Intelligence (**AI**) that is good at generating content: text, images, sounds, videos, code, etc. - -The previous version of GenAI (referred to as AI) was based on Deep Neural Networks (**DNN**), which are brain-inspired math equations optimized for content classification. For example, it enabled computers to identify if pixels in an image represent a cat or dog, or if some text is written in Spanish or English. - -GenAI uses AI in the opposite way -- not to classify, but to generate and create new content. For example, to generate a pixel image of a cat, or a response to some text in Spanish. A response from ChatGPT would be another example of GenAI in action. - -Head next to the [Deep Neural Networks](dnn) section to learn the foundations that lead us to Generative AI. - -## Generative Apps - -Generative Applications (**GenApps**) are software applications (**apps**) written with code that make use of GenAI. - -ChatGPT popularized using chatbots as the main interface for these GenApps, but other services like MidJourney also used social media interfaces like Discord. We are starting to see other interfaces like ChatGPT-4o that run in mobile phones and can understand voice and video without a chat interface, where in the not so distant future we might see GenApps that run in Zoom or even on robots like Tesla's Optimus. - -New developer jobs will likely require writing code for such new applications to help GenAI learn faster, modify their behavior, or solve harder problems. - -For example, even if an AI or a robot was capable of flying an airplane autonomously, developers might want to write code that double checks that the landing is safe, connects to the best weather services, provides flight updates to passengers, etc. - -We don't know exactly what the new GenApps will look like and how our jobs or world will transform, but we are optimistic that GenApps will help us solve hard problems the world is facing in healthcare, education, climate, energy, space exploration, entertainment, and so on. diff --git a/website/learn/genai/_category_.json b/website/learn/genai/_category_.json new file mode 100644 index 00000000..5278af0b --- /dev/null +++ b/website/learn/genai/_category_.json @@ -0,0 +1,4 @@ +{ + "label": "Generative AI", + "position": 3, +} \ No newline at end of file diff --git a/website/learn/concepts/dnn-imagenet.jpg b/website/learn/genai/dnn-imagenet.jpg similarity index 100% rename from website/learn/concepts/dnn-imagenet.jpg rename to website/learn/genai/dnn-imagenet.jpg diff --git a/website/learn/concepts/dnn-newton-method.png b/website/learn/genai/dnn-newton-method.png similarity index 100% rename from website/learn/concepts/dnn-newton-method.png rename to website/learn/genai/dnn-newton-method.png diff --git a/website/learn/concepts/dnn-nyt-perceptron.jpeg b/website/learn/genai/dnn-nyt-perceptron.jpeg similarity index 100% rename from website/learn/concepts/dnn-nyt-perceptron.jpeg rename to website/learn/genai/dnn-nyt-perceptron.jpeg diff --git a/website/learn/concepts/dnn-perceptron-multilayered.png b/website/learn/genai/dnn-perceptron-multilayered.png similarity index 100% rename from website/learn/concepts/dnn-perceptron-multilayered.png rename to website/learn/genai/dnn-perceptron-multilayered.png diff --git a/website/learn/concepts/dnn.md b/website/learn/genai/dnn.md similarity index 100% rename from website/learn/concepts/dnn.md rename to website/learn/genai/dnn.md diff --git a/website/learn/genai/index.md b/website/learn/genai/index.md new file mode 100644 index 00000000..35294542 --- /dev/null +++ b/website/learn/genai/index.md @@ -0,0 +1,21 @@ +# Generative AI + +Generative Artificial Intelligence (**GenAI**) is a version of Artificial Intelligence (**AI**) that is good at generating content: text, images, sounds, videos, code, etc. + +The previous version of GenAI (referred to as AI) was based on Deep Neural Networks (**DNN**), which are brain-inspired math equations optimized for content classification. For example, it enabled computers to identify if pixels in an image represent a cat or dog, or if some text is written in Spanish or English. + +GenAI uses AI in the opposite way -- not to classify, but to generate new content. For example, to generate a pixel image of a cat, or a response to some text in Spanish. A response from ChatGPT would be another example of GenAI in action. + +ChatGPT popularized using a chat interface to interact with generative AI, other services like MidJourney are using existing communication interfaces like Discord. We are starting to see other interfaces like ChatGPT-4o that run in mobile phones and can understand voice and video without a chat interface, in the not so distant future we might see generative applications that run in Zoom or even on robots like Tesla's Optimus. + +New developer jobs will likely require writing code for such new applications to help GenAI learn faster, modify their behavior, or solve harder problems. + +For example, even if an AI or a robot was capable of flying an airplane autonomously, developers might want to write code that double checks that the landing is safe, connects to the best weather services, provides flight updates to passengers, etc. + +We don't know exactly what the new AI will look like and how our jobs or world will transform, but we are optimistic that GenApps will help us solve hard problems the world is facing in healthcare, education, climate, energy, space exploration, entertainment, and so on. + +It is expected that AI systems will continue evolving, it's hard to predict how; but we can learn from expert interviews to understand the potential and implications of this new wave of AI. + +
+ +Head next to the [Deep Neural Networks](dnn) section to learn the foundations that lead us to Generative AI. diff --git a/website/learn/concepts/llm-autoencoder.png b/website/learn/genai/llm-autoencoder.png similarity index 100% rename from website/learn/concepts/llm-autoencoder.png rename to website/learn/genai/llm-autoencoder.png diff --git a/website/learn/concepts/llm-gpt-1.png b/website/learn/genai/llm-gpt-1.png similarity index 100% rename from website/learn/concepts/llm-gpt-1.png rename to website/learn/genai/llm-gpt-1.png diff --git a/website/learn/concepts/llm-transformer.png b/website/learn/genai/llm-transformer.png similarity index 100% rename from website/learn/concepts/llm-transformer.png rename to website/learn/genai/llm-transformer.png diff --git a/website/learn/concepts/llm.md b/website/learn/genai/llm.md similarity index 100% rename from website/learn/concepts/llm.md rename to website/learn/genai/llm.md diff --git a/website/learn/concepts/prompts.md b/website/learn/genai/prompts.md similarity index 100% rename from website/learn/concepts/prompts.md rename to website/learn/genai/prompts.md diff --git a/website/learn/concepts/sd-dalle-compare.png b/website/learn/genai/sd-dalle-compare.png similarity index 100% rename from website/learn/concepts/sd-dalle-compare.png rename to website/learn/genai/sd-dalle-compare.png diff --git a/website/learn/concepts/sd-denoise-process.png b/website/learn/genai/sd-denoise-process.png similarity index 100% rename from website/learn/concepts/sd-denoise-process.png rename to website/learn/genai/sd-denoise-process.png diff --git a/website/learn/concepts/sd-flux-hal9.png b/website/learn/genai/sd-flux-hal9.png similarity index 100% rename from website/learn/concepts/sd-flux-hal9.png rename to website/learn/genai/sd-flux-hal9.png diff --git a/website/learn/concepts/sd-gan.png b/website/learn/genai/sd-gan.png similarity index 100% rename from website/learn/concepts/sd-gan.png rename to website/learn/genai/sd-gan.png diff --git a/website/learn/concepts/sd-latent-diffusion.png b/website/learn/genai/sd-latent-diffusion.png similarity index 100% rename from website/learn/concepts/sd-latent-diffusion.png rename to website/learn/genai/sd-latent-diffusion.png diff --git a/website/learn/concepts/sd-style-gan.png b/website/learn/genai/sd-style-gan.png similarity index 100% rename from website/learn/concepts/sd-style-gan.png rename to website/learn/genai/sd-style-gan.png diff --git a/website/learn/concepts/sd.md b/website/learn/genai/sd.md similarity index 100% rename from website/learn/concepts/sd.md rename to website/learn/genai/sd.md