잠시만 기다려 주세요.
Cole Medin
2024. 9. 30.
Meta recently released their latest suite of LLMs - Llama 3.2 - and they are CRUSHING it on the benchmarks! The 11b and 90b parameter versions even have vision capabilities. But what I care about the most is how well they do as AI agents - LLMs that are able to send emails, message in Slack, do RAG, etc. Local LLMs have historically been not so great as AI agents (specifically because of poor function calling performance), so when Llama 3.2 came out, I was super excited to see how it fared as a function calling agent. And that's exactly what I test out in this video! Llama 3.2 90b is pretty on par with GPT-4o-mini according to the benchmarks, so I pit the two models against each other to set a good baseline for seeing how good Llama 3.2 really is. Cage match! 00:00 - Plan of Attack 01:52 - Showcasing the AI Agent Code 05:03 - The Agent Capabilities (Tools) 06:52 - Testing GPT-4o-mini as an Agent 11:35 - Testing Llama 3.2 90b as an Agent 15:29 - Outro ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ All the code for the AI Agent that I used in this video to test Llama 3.2 90b and GPT-4o-mini can be found here: https://github.com/coleam00/ai-agents-masterclass/tree/main/llm-agent-evaluation-framework ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Artificial Intelligence is no doubt the future of not just software development but the whole world. And I'm on a mission to master it - focusing first on mastering AI Agents. Join me as I push the limits of what is possible with AI. I'll be uploading videos three times a week - Sundays, Wednesdays, and Fridays at 7:00 PM CDT! Sundays and Wednesdays are for everything AI, Fridays are specifically for platform showcases (sometimes sponsored, always creative in approach!).
#개발자 #개발 #구글 #프로그래머 #최초 #서버 #구글서버 #데이터센터 #카카오 #네이버 #대기업
2024. 9. 14.
개발자 상담은 매주 토요일 10시에 진행됩니다. 리눅스 커널 강의 인프런 오픈 ▷ https://inf.run/n47Uy OJ TUBE에서 진행된 강의들 ▷ 임베디드 유료 강의 (맛보기) https://www.youtube.com/watch?v=8JebKNKx6G4&list=PLz--ENLG_8TMQ1HKzZKiRkaeL4jeSYVsx ▷ 임베디드 인프런 강의 링크 : https://inf.run/WAbM 15만원 할인 쿠폰 : 17442-182d7818702b (쿠폰은 항상 최신 영상을 참조해주세요. 바뀔 수 있습니다.) ▷ C언어 강의 (완료) https://youtube.com/playlist?list=PLz--ENLG_8TMdMJIwyqDIpcEOysvNoonf
2024. 10. 21.
배열 함수중에 가장 공부하기 귀찮은 Reduce( ), 이번 영상 하나로 끝내시죠 ..................................................... 📝코드 에디터 Visual Studio Code ..................................................... ☕️Visual Studio Code Extension Live Server - 저장시 자동으로 변화를 브라우저에 적용해주는 편리한 익스텐션이예요 ..................................................... ⏱타임라인 00:00 reduce 어려워??? 01:00 forEach - 모든 요소 합 구하기 02:13 reduce - 모든 요소 합 구하기 07:21 reduce - 가장 작은 요소 구하기 10:29 reduce 실전 문제! 12:04 reduce 안어려워!
2024. 1. 29.
Visit Our Website: https://interviewpen.com/?utm_campaign=codeexecution Join Our Discord (24/7 help): https://discord.gg/Qy85PT9wj6 Like & Subscribe: https://youtube.com/@interviewpen This video shows you how to design a code execution service that can run code submitted by users and return a result. This kind of system is used on interviewpen.com for our practice problems! If you liked this video and want to learn more about fundamental systems and how they can be used to solve problems, check out our full course on https://interviewpen.com/?utm_campaign=codeexecution ! Table of Contents: 0:00 - Introduction 0:38 - Requirements 1:35 - Single Server 2:43 - Docker 4:00 - Kubernetes 5:19 - Kubernetes Standby Pod 6:43 - Conclusion Socials: Twitter: https://twitter.com/InterviewPen LinkedIn: https://www.linkedin.com/company/interviewpen Website: https://interviewpen.com/?utm_campaign=codeexecution
2024. 4. 23.
David Nahodyl presents a talk at VueConf US 2024. Watch all the talks from this conference and more on Vue Mastery 👉 https://www.vuemastery.com/conferences Ready to master Vue.js? With weekly Vue js tutorials on the latest topics, and exclusive content with Evan You (the creator of Vue), Vue Mastery is the ultimate learning resource for Vue developers to level-up their skills. Watch more free Vuejs tutorials 👉 https://www.vuemastery.com/courses 0:00 Laravel 5:27 Demo
2024. 9. 2.
데이터 처리에서 핵심은 '메시지 전달 시멘틱' 입니다. 메시지 전달 시멘틱은 크게 세가지로 나뉩니다. 적어도 한 번(at least once), 많아도 한 번(at most once), 정확히 한 번(exactly once)입니다. 아파치 카프카는 트랜잭션 프로듀서/컨슈머(transaction producer/consumer)과 컨슈머의 커밋을 트랜잭션에 포함시키는 기능(sendOffsetsToTransaction)을 통해 정확히 한 번을 달성할 수 있습니다.
2023. 11. 12.