Skip to main content

Reflections on course 'Generative AI for Everyone'

Course: Generative AI for Everyone

The course "Generative AI for Everyone" discusses the design principles, practical applications, and potential societal impacts of Generative AI (GAI). It shares a similar structure with the "AI for Everyone" course, highlighting the differences between GAI and traditional AI, as well as between general-purpose AI and Artificial General Intelligence (AGI).

Week 1: What is Generative AI?
Generative AI (GAI) is a type of AI that predicts the next step based on existing content and uses the results as a reference for future iterations. In the realm of imagery, it involves identifying and clarifying images from noise. A key characteristic of GAI is that smaller models have limited growth potential and don't improve significantly with more data, whereas larger models have greater potential for development. In terms of accuracy, GAI is not as effective as Web Search. GAI is better suited for simple interactions, summarizing long articles, and inspirational conversations.

Week 2: Applications and Evolution of Generative AI
Currently, AI is effectively used for deriving actions, deducing context, and providing reference opinions. Different AI architectures excel in various task types. Evolving AI models currently include Retrieval Augmented Generation (RAG) and Fine-tuning. The course explores how to obtain answers aligned with objectives from existing models, focusing on methods like Instruction tuning and Reinforcement Learning from Human Feedback (RLHF).

Week 3: The Impact of Generative AI on Society
This week's focus is on the impact of Generative AI (GAI) on society. It covers how, while many tasks are still beyond current AI capabilities, AI can assist workers in areas where it excels, improving and even automating tasks. The introduction of AI in businesses might not always be cost-saving, but it offers an opportunity for companies to reevaluate and possibly enhance their processes, including customer interactions. Current Large Language Models (LLMs) can respond to general-purpose queries, while the emerging topic of Artificial General Intelligence (AGI) looks at machines performing tasks at a level comparable to a high school student. This session also discusses the influence of GAI and LLMs on higher-paid jobs, contrasting with past automation technologies that mainly impacted lower-wage jobs. The development of responsible AI is emphasized, focusing on fairness, transparency, privacy, security, and ethical use.

After completing two of Andrew Ng's courses, one can truly sense his passion for AI. I too believed, even before taking AI courses, that humans won't be replaced by AI, but by those who know how to use it. Just like in the primitive era, civilizations that mastered fire advanced to the next stage. However, it's foreseeable that, regardless of AI's widespread application, the demand for AI engineers might remain limited, similar to Unreal Engine engineers in today's society. Yet, enterprises might start considering 'AI proficiency' as an additional requirement for tech positions.

In modern times, where fraudsters and aggressors have also entered the online world, Europe has established GDPR (EU General Data Protection Regulation) to protect its citizens. This regulation, while essential, somewhat hinders AI development. I favor the development of open-source models, which can prevent misuse, as experts across related fields can work to counteract any crisis created using these models. GDPR might push AI models towards privatization, complicating the clarification of misinformation for well-intentioned companies and obscuring the principles behind malicious activities by nefarious corporations. Industries, especially academia, aiming to build upon the work of others, need to make more detailed distinctions in their operations, which might conflict with service providers, like subscription services that inherently include identity recognition features. Subscription services have effectively curtailed the piracy that has plagued the software industry for decades.

This course is highly recommended for beginners in Generative AI.

 

Comments

Popular posts from this blog

Bookmark service (MongoDB & Spring REST) -2/2

    I accidentally deleted my development VM. I got lucky having the habit of taking notes. This blog is useful. Development VM is doom to be lost. Rebuild it waste time, but having a clean slate is refreshing~. What concerns me more is my AWS free quota this month is reaching 85%. The second VM I launched but never being used might be the one to blame. (Of course, my mistake.) I terminated the wrong VM. Now I got Linux 2 built. Great, just threw away everything happened on AMI.  1st layer: Page Page class   Originally, I need to prepare getter/setter for all class properties for Spring. By using lombok, I only need to create constructors. lombok will deal with getter/setter and toString(). But there are chances to call getter/setter, but how? .......Naming convention.... Capitalize the 1st character with the prefix get/set.  Annotation @Data was used on this class.  Repository class Spring Docs: Repository https://docs.spring.io/spring-data/mongodb/docs/3....

gamer's interview

This project simulates a gamer's interview. Based on NodeJS+ ReactJS The setting is interviewing a gamer/journalist what's his/her plan of March 2020? The gamer answers his/her game list in plan, how many reviews on demand and how many hours expected. Games selected for review take 5 hours for each, while others take one. This project is designed to practice render html, jsx, component, props introduced in  https://www.w3schools.com/REACT/default.asp . Also fixed other issues to make it work. When trying to modualize objects and tools, my design developed to separate views and processes. And it is quite similar to the initialized structure NodeJS+ReactJS provided. Furthermore, since include local module files are banned by browsers, use NodeJS service seems to be the best option. view file main process object tool

Comments for my Server/Client Web API samples

        Finally, I finished the comments for python/07 and 09 projects. I almost forgot to put the date on source code which is used to note how long it took me. Not precisely in hours….. I didn’t include source code in my previous post. If choosing code-section for this post…… maybe I want to mark out my comment….. (Really?!)          Once my work was developing websites for enterprises, including ERP, CRM or content sites. The sustainability of network and security are important issues. There are 2 methods for HTML Form submission: GET and POST. Submit via POST is secure, compared to GET which piles parameters on URL. RESTful API is mainly using GET.         Yup, even if you have a certification key, if you put the value on the URL, it is visible data. When writing socket-communication, client-server sockets are a pair; both follow the agreement on commands and structures; and there are countless ports for usa...