|
|
| Line 109: |
Line 109: |
| | <b>ChatGPT Tutorial - Use ChatGPT for DevOps tasks to 10x Your Productivity | | <b>ChatGPT Tutorial - Use ChatGPT for DevOps tasks to 10x Your Productivity |
| | </b><br>I'm sure you have all heard of ChatGPT by now. It has become a buzzword within days of its release and professionals in all fields, especially in high skilled areas like lawyers, doctors, engineers are questioning whether such AI can actually replace them and work. So in this video I want to talk about what ChatGPT is and how it even popped up, talk a bit about the organization behind GPT called "[[OpenAI]]", which has already created many other machine learning models besides Chat GPT and also explain technically about all that. And then we'll dive in and actually put ChatGPT to use for some DevOps related tasks. I really want to see how it can help in generating configuration code for building DevOps processes or different parts of those processes and how well it knows different DevOps technologies, but not just some shallow examples or boilerplate code that I can get from official documentation, but instead also try more fine-tuning and small optimizations in that configuration code. We're also going to check out an open source command line tool that is built on top of ChatGPT and was specifically created for engineers to generate infrastructure as code templates and more and finally we'll talk about the impact of ChatGPT, the quality and usefulness of such a tool for engineers and whether it will really replace the engineers and to what extent you should be concerned. | | </b><br>I'm sure you have all heard of ChatGPT by now. It has become a buzzword within days of its release and professionals in all fields, especially in high skilled areas like lawyers, doctors, engineers are questioning whether such AI can actually replace them and work. So in this video I want to talk about what ChatGPT is and how it even popped up, talk a bit about the organization behind GPT called "[[OpenAI]]", which has already created many other machine learning models besides Chat GPT and also explain technically about all that. And then we'll dive in and actually put ChatGPT to use for some DevOps related tasks. I really want to see how it can help in generating configuration code for building DevOps processes or different parts of those processes and how well it knows different DevOps technologies, but not just some shallow examples or boilerplate code that I can get from official documentation, but instead also try more fine-tuning and small optimizations in that configuration code. We're also going to check out an open source command line tool that is built on top of ChatGPT and was specifically created for engineers to generate infrastructure as code templates and more and finally we'll talk about the impact of ChatGPT, the quality and usefulness of such a tool for engineers and whether it will really replace the engineers and to what extent you should be concerned. |
| | + | |
| | + | 00:00 - Intro and Overview |
| | + | 01:39 - What is ChatGPT, Who developed ChatGPT |
| | + | 06:45 - Sign Up on ChatGPT |
| | + | 09:23 - Create Dockerfile for Node.js app using ChatGPT |
| | + | 22:13 - Create Kubernetes manifest file using ChatGPT |
| | + | 35:06 - Create CI/CD pipeline code using ChatGPT |
| | + | 50:06 - Convert Jenkinsfile into GitLab CI config file |
| | + | 53:53 - Tools built on top of OpenAI's API |
| | + | 55:01 - AIaC demo - CLI tool for DevOps |
| | + | 01:01:00 - My opinion on ChatGPT & whether ChatGPT will replace engineers |
| | |} | | |} |
| | |}<!-- B --> | | |}<!-- B --> |
Revision as of 08:46, 28 January 2023
YouTube search...
...Google search
ChatGPT
YouTube search...
...Google search
Generates human-like text, making ChatGPT performs a wide range of natural language processing (NLP) tasks; chatbots, automated writing, language translation, text summarization and generate computer programs. OpenAI states ChatGPT is a significant iterative step in the direction of providing a safe AI model for everyone. ChatGPT interacts in a conversational way. The dialogue format makes it possible for ChatGPT to answer follow-up questions, admit its mistakes, challenge incorrect premises, and reject inappropriate requests. ChatGPT is a sibling model to InstructGPT, which is trained to follow an instruction in a prompt and provide a detailed response.
|
ChatGPT Tutorial for Developers - 38 Ways to 10x Your Productivity
Learn how to use ChatGPT to 10x your productivity! 38 examples using Python, JavaScript, HTML, CSS, React, SQL and more!
|
|
|
|
I challenged ChatGPT to code and hack (Are we doomed?)
Are we doomed? Will AI like ChatGPT replace us? I put it to the test and challenged it to write C code, Python hacking scripts, Rubber Ducky scripts, configure Cisco networks and more.
// MENU //
00:00 - Intro
00:30 - Testing ChatGPT // The new AI chatbot
02:27 - Is ChatGPT SkyNet?
04:18 - C programming code
08:34 - Python SSH brute force script
13:51 - Rubber Ducky scripts (Windows 11)
15:57 - Rubber Ducky scripts on Android
17:05 - Nmap scans
19:12 - Cisco configs - Switches and BGP
24:29 - Conclusion // Learn AI
|
|
|
But How Does ChatGPT Actually Work?
You’ll learn how ChatGPT works and this will provide many benefits, such as helping you to use the model more effectively, evaluate its outputs more critically, and staying informed about the latest developments in the field so you are better prepared to take advantage of new opportunities. ChatGPT is a type of natural language processing model (NLP) known as a Generative Pretrained Transformer (GPT) developed by OpenAI. These are the two big terms we will focus on in this video. On top of that you will also get a base understanding of common Machine Learning techniques like supervised learning, and reinforcement learning, which were used to make ChatGPT as good as it is.
|
|
|
|
ChatGPT Clone – OpenAI API and React Tutorial
Learn how to use React and the OpenAI API to create an application like ChatGPT. The application can answer our questions, convert the text into different languages, or even convert JavaScript code to Python.
|
|
|
|
|
|
ChatGPT Tutorial - Use ChatGPT for DevOps tasks to 10x Your Productivity
I'm sure you have all heard of ChatGPT by now. It has become a buzzword within days of its release and professionals in all fields, especially in high skilled areas like lawyers, doctors, engineers are questioning whether such AI can actually replace them and work. So in this video I want to talk about what ChatGPT is and how it even popped up, talk a bit about the organization behind GPT called "OpenAI", which has already created many other machine learning models besides Chat GPT and also explain technically about all that. And then we'll dive in and actually put ChatGPT to use for some DevOps related tasks. I really want to see how it can help in generating configuration code for building DevOps processes or different parts of those processes and how well it knows different DevOps technologies, but not just some shallow examples or boilerplate code that I can get from official documentation, but instead also try more fine-tuning and small optimizations in that configuration code. We're also going to check out an open source command line tool that is built on top of ChatGPT and was specifically created for engineers to generate infrastructure as code templates and more and finally we'll talk about the impact of ChatGPT, the quality and usefulness of such a tool for engineers and whether it will really replace the engineers and to what extent you should be concerned.
00:00 - Intro and Overview
01:39 - What is ChatGPT, Who developed ChatGPT
06:45 - Sign Up on ChatGPT
09:23 - Create Dockerfile for Node.js app using ChatGPT
22:13 - Create Kubernetes manifest file using ChatGPT
35:06 - Create CI/CD pipeline code using ChatGPT
50:06 - Convert Jenkinsfile into GitLab CI config file
53:53 - Tools built on top of OpenAI's API
55:01 - AIaC demo - CLI tool for DevOps
01:01:00 - My opinion on ChatGPT & whether ChatGPT will replace engineers
|
|
Generative Pre-trained Transformer (GPT-3)
- Language Models are Few-Shot Learners | T. Brown, B. Mann, N. Ryder, M. Subbiah, J. Kaplan, P. Dhariwal, A. Neelakantan, P. Shyam, G. Sastry, A. Askell, S. Agarwal, A. Herbert-Voss, G. Krueger, T. Henighan, R. Child, A. Ramesh, D. Ziegler, J. Wu, C. Winter, C. Hesse, M. Chen, E. Sigler, M. Litwin, S. Gray, B. Chess, J. Clark, C. Berner, S. McCandlish, A. Radford, I. Sutskever, and D. Amodei - arXiv.org
- GPT-3: Demos, Use-cases, Implications | Simon O'Regan - Towards Data Science
- OpenAI API ...today the API runs models with weights from the GPT-3 family with many speed and throughput improvements.
- GPT-3 by OpenAI – Outlook and Examples | Praveen Govindaraj | Medium
- GPT-3 Creative Fiction | R. Gwern
Try...
- Serendipity ...an AI powered recommendation engine for anything you want.
- Taglines.ai ... just about every business has a tagline — a short, catchy phrase designed to quickly communicate what it is that they do.
- Simplify.so ...simple, easy-to-understand explanations for everything
|
What is GPT-3? Showcase, possibilities, and implications
What is going on in AI research lately? GPT-3 crashed the party, let’s see what it is and what it can do. Hoping we do not forget how problematic it might also become. GPT-3 Paper : Brown, Tom B., Benjamin Mann, Nick Ryder, Melanie Subbiah, Jared Kaplan, Prafulla Dhariwal, Arvind Neelakantan et al. "Language models are few-shot learners." arXiv preprint arXiv:2005.14165 (2020). https://arxiv.org/pdf/2005.14165.pdf
|
|
|
|
14 Cool Apps Built on OpenAI's GPT-3 API
14 Cool applications just built on top of OpenAI's GPT-3 (generative predictive transformer) API (currently in private beta).
|
|
|
This text generation AI is INSANE (GPT-3)
An overview of the gpt-3 machine learning model, why everyone should understand it, and why some (including its creator, open AI) think it's dangerous.
|
|
|
|
GPT-3 Demo Installation -Generative pretrained Transformer model (Third generation of OpenAI)
Pythoncode.
|
|
|
How Artificial Intelligence Changed the Future of Publishing | OpenAI GPT-3 and the Future of Books
Go from content chaos to clear, compelling writing that influences people to act without them realizing it: https://bit.ly/thebestwaytosayit As Ed Leon Klinger shows in his GPT 3 demo and GPT 3 examples thread
|
|
|
|
GPT-3: Language Models are Few-Shot Learners (Paper Explained)
How far can you go with ONLY language modeling? Can a large enough language model perform Natural Language Processing (NLP) task out of the box? OpenAI take on these and other questions by training a transformer that is an order of magnitude larger than anything that has ever been built before and the results are astounding.
|
|
|
GPT3: An Even Bigger Language Model - Computerphile
Basic mathematics from a language model? Rob Miles on GPT3, where it seems like size does matter! More from Rob Miles: https://bit.ly/Rob_Miles_YouTube This video was filmed and edited by Sean Riley. Computer Science at the University of Nottingham: https://bit.ly/nottscomputer
|
|
|
|
GPT-3 from OpenAI is here and it's a MONSTER!
GPT-3 is the largest language model to date with 175 billion parameters. It is able to do various Natural Language Processing (NLP) tasks (translation, question answering) without additional finetuning.
|
|
|
|
|
|
Steve Omohundro on GPT-3
In this research meeting, guest Stephen Omohundro gave a fascinating talk on GPT-3, the new massive OpenAI Natural Language Processing model. He reviewed the network architecture, training process, and results in the context of past work. There was extensive discussion on the implications for Natural_Language_Processing_(NLP) and for Machine Intelligence / AGI.
|
|
|
GPT 3 Demo and Explanation - An AI revolution from OpenAI
GPT 3 can write poetry, translate text, chat convincingly, and answer abstract questions. It's being used to code, design and much more. I'll give you a demo of some of the latest in this technology and some of how it works. GPT3 comes from a company called OpenAI. OpenAI was founded by Elon Musk and Sam Altman (former president of Y-combinator the startup accelerator). OpenAI was founded with over a Billion invested to collaborate and create human-level AI for the benefit of society. GPT 3 has been developed for a number of years. One of the early papers published was on Generative Pre-Training. The idea behind generative pre-training (GPT) is that while most AI's are trained on labeled data, there's a ton of data that isn't labeled. If you can evaluate the words and use them to train and tune the AI it can start to create predictions of future text on the unlabeled data. You repeat the process until predictions start to converge. The newest GPT is able to do a ton. Some of the demos include: - GPT 3 demo of how to design a user interface using AI - GPT 3 demo of how to code a react application using AI - GPT 3 demo of an excel plug-in to fill data using AI - GPT 3 demo of a search engine/answer engine using AI - GPT3 demo of command line auto-complete from English to shell commands
|
|
|
|
Panel discussion - GPT-3 and Artificial General Intelligence 27 Aug 2020
Is GPT-3 a step towards creating artificial general intelligence? Chair: Associate Professor Kate Devitt - Chief Scientist, Trusted Autonomous Systems
Panel:
• Professor David Chalmers (NYU)
• Professor Susan Schneider (NASA and Florida Atlantic University)
• Professor Marcus Hutter (ANU)
A philosophical discussion on the development of artificial intelligence and specifically advances in Generative Pre-trained Transformer-3 (GPT-3). GPT-3 is an auto-complete algorithm created by OpenAI as part of their endeavour to develop artificial general intelligence. GPT-3 is the third in a series of autocomplete tools designed by OpenAI. (GPT stands for “generative pre-trained transformer.”). GPT-3 is fed on an unimaginatively large corpus of human knowledge including all of Wikipedia, millions of books, websites and other materials including philosophy texts. In fact, any type of information uploaded to the internet is possible food for GPT-3's artificial mind to dwell on. The result? Eerily coherent, complex and interesting thoughts about almost any topic. The sophisticated, nuanced text produced by GPT-3 seems to pass the Turing Test for many--including philosophers. Some of GPT-3's answers are shedding new light on enduring philosophical questions. Is GPT-3 the beginnings of an artificial general intelligence. Does it create ideas like a human mind, or even better than a human mind? Is human cognition similarly some sort of autocomplete program in our brains? Is it possible that GPT-3 one day becomes consciousness or is it already conscious?--How could we tell. If an AI passes our tests for consciousness, do we then have an obligation to accord it rights? If so, what sorts of rights might it deserve. Independently of rights, how should humans manage an AI that has access to everything that is posited and known and can trick humans into believing that another rational agent is communicating with them? The panel considers what GPT-3 tell us about the ambition to build an artificial general intelligence, consciousness, human thought and how we should treat AI in an increasingly digital and disembodied world rife with mis- and disinformation.
|
|
GPT Impact to Development
|
|
|
|
OpenAI Model Generates Python Code
This code completion engine can write an entire function from just the name! OpenAI demonstrates what happens when you learn a language model on thousands of GitHub Python repositories. Source Clip: https://youtu.be/fZSFNUT6iY8
|
|
|
OpenAI and Microsoft Can Generate Python Code
OpenAI language model was trained on thousands of GitHub repositories using the same unsupervised learning as the GPT models. Build 2020
|
|
|
|
GPT 3 Explanation And Demo Reaction | Should You Be Scared ? Techies Reaction To GPT3 AI OpenAI
In this video we will look at some of the demos and reactions across social media on GPT-3. The links to the tweets and demo you see in this video have been linked below so please do react out to them if you have any questions.
|
|
|
Code 10x Faster With This CRAZY New AI Tool (GPT-3)
In this FREE LIVE training, Aaron and Naz will show you the new cutting edge machine learning AI, OpenAI's GPT-3.
|
|
|
|
Build 2 projects using GPT-3 in just a couple of minutes. Bare bones: branding generator, chat bot
Co-founded by Elon Musk OpenAI wants to make AI safe and accessible. A year ago the startup released GPT-2. That language model was at that time deemed too powerful to release. Eventually OpenAI made the model available. This year they've trained a much more powerful model at least 1 magnitude larger than GPT-2. I was one of the lucky 750+ people granted access as Beta testers by OpenAI to see what can be built using the GPT-3 API. The model costs millions of dollars to train which makes it out of reach for most organizations. This video skims the surface of what you can get done with this amazing new model.
|
|
Generative Pre-trained Transformer (GPT-2)
Coding Train Late Night 2
|
Coding Train Late Night 2: Fetch, GPT-2 and RunwayML
The Coding Train
0:00 Live Stream Starts
3:51 Introduction With Dad Jokes
11:29 Coding Late At Night Projects and Notes
16:48 Scraping Dad Jokes With Fetch
50:10 Training a Model With Runway
57:52 Small Break
1:00:15 Controlling Hue Lights
1:20:00 Dad Joke Model
1:32:27 Skip: Audio Glitch (LOUD)
1:35:00 Dad Joke Model
1:49:25 Dad Joke Generator
1:54:25 Goodbyes and End of Stream
Website: https://thecodingtrain.com/
|
|
|
|
Coding Train Late Night 3: GPT-2, Hue Lights, Discord Bot
The Coding Train
0:00 Live Stream Starts
3:50 Introduction
9:50 AI Joke Generator
13:30 Live Stream Notes
19:50 Generative Text Training with GPT-2
29:40 Dad Joke Model Training
1:11:27 Using Hue Lights API
1:31:50 More Dad Joke Generator
1:37:33 Discord Bot
2:15:04 Goodbyes and End of Stream
Website: https://thecodingtrain.com/
|
|
r/SubSimulator
Subreddit populated entirely by AI personifications of other subreddits -- all posts and comments are generated automatically using:
results in coherent and realistic simulated content.
GetBadNews
- Get Bad News game - Can you beat my score? Play the fake news game! Drop all pretense of ethics and choose the path that builds your persona as an unscrupulous media magnate. Your task is to get as many followers as you can while