6. OpenAI ChatGPT and DALL-E2 - Python Frontend App Development

  Рет қаралды 31,250

Part Time Larry

Part Time Larry

Күн бұрын

Пікірлер
@parttimelarry
@parttimelarry Жыл бұрын
Like the video? Support my content by checking out Interactive Brokers using the link below: www.interactivebrokers.com/mkt/?src=ptlPY1&url=%2Fen%2Findex.php%3Ff%3D1338 I will be starting a spinoff channel on AI in music, art, and gaming in 2023. Subscribe at: youtube.com/@parttimeai Frontend Source Code: github.com/hackingthemarkets/semantic-search-frontend Semantic Search Notebook: colab.research.google.com/drive/1tttDqgnWL9yJtmlOFXJqA-BjQ1Pyfpax?usp=sharing The embeddings notebook is based on the embeddings examples in the OpenAI Cookbook: github.com/openai/openai-cookbook
@kashif_jilani
@kashif_jilani Жыл бұрын
I don't have any words to describe, the way you describe this. Amazing
@J2897Tutorials
@J2897Tutorials Жыл бұрын
_"If it can't produce what you want, you're not telling it what to do the correct way."_ - Absolutely right. When you accurately explain the task in great detail, that's when it really shines... Mind blowing.
@ControlTheGuh
@ControlTheGuh Жыл бұрын
I like how you added errors into your presentation. Helps with learning new stuff and refresh older knowledge
@AP-hv5dh
@AP-hv5dh Жыл бұрын
Thanks!
@parttimelarry
@parttimelarry Жыл бұрын
Thank you! Much appreciated!
@RickHunter-fz7oh
@RickHunter-fz7oh Жыл бұрын
I never thought learning about OpenAI and Python could be so entertaining, but your videos are a real hoot! Thanks for making OpenAI less intimidating and more fun.
@gameblamerfan
@gameblamerfan Жыл бұрын
Thanks, just discovered Chat GPT and its great!
@Keziacl
@Keziacl Жыл бұрын
Thank you for such a great learning course! As a computer science student and worker, I really appreciated the clear explanations and practical examples. Your teaching style made the material easy to understand and helped me to gain a deeper understanding on AI. I feel much more confident in my abilities and look forward to applying what I've learned in my future studies and projects. Thank you for your hard work and dedication to helping your students succeed. I am grateful for the opportunity to learn from you.
@parttimelarry
@parttimelarry Жыл бұрын
Thanks, glad you are enjoying it. These things are brand new to me too!
@deeplearning5408
@deeplearning5408 Жыл бұрын
Watching you is quite relaxing and very informative. I very like your style. Please continue with it.
@jmparejaz
@jmparejaz Жыл бұрын
Amazing video tutorial, I wasnt aware about your channel, gonna check it to get more knowledge!
@nodesignlaws
@nodesignlaws Жыл бұрын
this man is handing us self-actualisation on a plate btw
@J3R3MI6
@J3R3MI6 Жыл бұрын
Incredible video! ✨ please cover more on coding with ChatGPT and building different apps and tools
@rhard007
@rhard007 Жыл бұрын
I really enjoyed this video .. thank you.
@deep2mixer
@deep2mixer Жыл бұрын
This is quite practical and useful. Thank you.
@NeferLopez
@NeferLopez Жыл бұрын
Your videos are awesome!
@FRANKWHITE1996
@FRANKWHITE1996 Жыл бұрын
wow! thanks for sharing
@user-wr4yl7tx3w
@user-wr4yl7tx3w Жыл бұрын
awesome content!
@adnandehghani7325
@adnandehghani7325 Жыл бұрын
Really learned here
@thomastudu2977
@thomastudu2977 Жыл бұрын
This is Gold !
@ethyrice
@ethyrice Жыл бұрын
28:00 it’s because there’s very little intellectual property in what you’re feeding/receiving in chat GPT
@Master_of_Chess_Shorts
@Master_of_Chess_Shorts Жыл бұрын
good content, thanks
@Fordtruck4sale
@Fordtruck4sale Жыл бұрын
THE man.
@smudgepost
@smudgepost Жыл бұрын
Amazing videos - can't easily find them grouped in a playlist?
@parttimelarry
@parttimelarry Жыл бұрын
Hmm should be one - kzbin.info/www/bejne/j4bKdIiBm7-kaqc
@smudgepost
@smudgepost Жыл бұрын
A superb tutorial thank you. You skipped over the flask def serve_static(filename) @22:57 to serve the css and image. I see it's higher up in your app.py code, I just can't get it to work. The html is loading and the path links open in Visual Code, they just aren't being served?
@AryanSharma-dh4fb
@AryanSharma-dh4fb Жыл бұрын
really helpful
@cannotthinkofoneatth
@cannotthinkofoneatth Жыл бұрын
autocomplete a word that you set to write is different from autocompleting the whole fricking thing they need you for!
@MagusArtStudios
@MagusArtStudios Жыл бұрын
as a talented graphic designer i think that AI generated Art is good for the workflow since graphic design is easy bu.t time consuming and technique orientated.
@marvmagic
@marvmagic Жыл бұрын
Great
@J2897Tutorials
@J2897Tutorials Жыл бұрын
My thoughts on AI replacing artists: I'm neutral. It's a moot point because it can't be stopped. Although there may still be benefits in paying a human, e.g. the PSD/XCF file can be tweaked and modified easily when you want lots of minor changes without affecting the overall design. Artists could also leverage the power of AI during the initial design phase for rapid inspiration after a customer has thoroughly conveyed their request.
@Ricocase
@Ricocase Жыл бұрын
Salute! Where are the Python tutorials?
@wtidowu
@wtidowu Жыл бұрын
Would you say chatGPT saved you time in building your application or with your prior knowledge could you have built it in practically the same time?
@parttimelarry
@parttimelarry Жыл бұрын
In this case I made this video as a demonstration and had already thought through what we were building. I built my first Flask app over 10 years ago, so I can do that very quickly. I chose something fairly simple to build upon the previous video. I would say it is helping me in the same way StackOverflow or Google does. I actually didn't know why that Access Denied was occurring, and the suggestion regarding using a different port was helpful here. It turns out the most recent version of Mac OS X uses that port, so I learned something there. Separately, I am also using it to grab examples of other types of programs that I have less experience writing. For example, different types of machine learning algorithms. It is nice to have a tool to generate some example code or boilerplate code that I don't remember. For instance, even though I have probably made 100 Flask apps, I still often go to the Flask documentation and copy the basic Hello World example when I start. Or I want to remember the syntax for creating a SQLAlchemy model. I can also ask alternate ways to write some code or how to write a few lines to sort or search. It's even better that it includes comments and text about what the code is actually doing. I can see a beginning programmer having many sessions with this and learning quite a bit. It is still early and my opinions will evolve over time. As mentioned it only came out a month ago when I was busy on other things, but I expect it will become an important part of my workflow as I explore the most effective ways of using it.
@hayshum
@hayshum Жыл бұрын
Awsome! Have you tried to deploy to Google Appengine or any other platform?
@JOHNSMITH-ve3rq
@JOHNSMITH-ve3rq Жыл бұрын
What happens if embeddings don’t fit in memory? We might be dealing with many many gb - any ideas? Store embeddings in memory but text jn SQLite or other db? Embedding should be at sentence, paragraph, document level? Many questions about implementation details. This is really great though thank you.
@qudizzle1
@qudizzle1 Жыл бұрын
Im just getting started with Python on Mac, do you recommend using VScode + Anaconda plugin? This is what chatGPT recommended to me lol!
@parttimelarry
@parttimelarry Жыл бұрын
That sounds like a great setup! I really need to make a video on setting up a dev environment for people who are new to this stuff.
@gabrielafolabi3327
@gabrielafolabi3327 Жыл бұрын
👌
@chrima758
@chrima758 Жыл бұрын
How to deal with "OPEN_API_KEY" is not accessedPylance?
@anujbhatia3337
@anujbhatia3337 Жыл бұрын
What are some of your favorite Discord communities to engage in and also get help for projects that you’re working on?
@parttimelarry
@parttimelarry Жыл бұрын
I mostly stopped hanging on Discord, but I really like the BuildSpace community
Жыл бұрын
Good content, but should not say meaningless sentences. For foreigners, English is not good, listening to understand the main content is very difficult.
@ShadedWarrior
@ShadedWarrior Жыл бұрын
Maybe you can use AI to translate it :)
7. OpenAI Whisper and GPT-3 - Voice Commands and Live Transcription
15:00
ChatGPT Tutorial - A Crash Course on Chat GPT for Beginners
34:05
Adrian Twarog
Рет қаралды 6 МЛН
When you have a very capricious child 😂😘👍
00:16
Like Asiya
Рет қаралды 18 МЛН
人是不能做到吗?#火影忍者 #家人  #佐助
00:20
火影忍者一家
Рет қаралды 20 МЛН
Сестра обхитрила!
00:17
Victoria Portfolio
Рет қаралды 958 М.
Build and Deploy Your Own ChatGPT AI App in JavaScript | OpenAI, Machine Learning
1:01:47
Tech I'm Learning in 2023, Free Courses and Books
23:33
Part Time Larry
Рет қаралды 18 М.
ChatGPT Tutorial for Developers - 38 Ways to 10x Your Productivity
28:13
Programming with Mosh
Рет қаралды 3,5 МЛН
Building a Q&A Chatbot using GPT and embeddings
1:07:46
Jeremy Pinto
Рет қаралды 26 М.
How to Use ChatGPT as a Powerful Tool for Programming
31:08
Corey Schafer
Рет қаралды 309 М.
8. OpenAI Financial Advisor Q&A Embeddings - Python Tutorial
28:53
Part Time Larry
Рет қаралды 29 М.
Python Automation with ChatGPT
1:14:05
TechWorld with Nana
Рет қаралды 279 М.