Video yükleniyor...

Video Yüklenemedi

Ana Sayfaya Dön

Evaluating and Debugging Generative AI, created with wan deeee bee and taught by Carey Phelps, is now available! ML is an iterative process, and many of us used to track our models/experiments in a text file or spreadsheet, which gets messy. There’re now much better tools like Weights &...

140,878 görüntüleme • 2 yıl önce •via X (Twitter)

10 Yorum

Akshay 🚀 profil fotoğrafı
Akshay 🚀2 yıl önce

@weights_biases @carey_phelps Big fan of the short courses that coursera is offering! Thank you! 🙏

Rufus profil fotoğrafı
Rufus2 yıl önce

@weights_biases @carey_phelps Another informative course big thanks to DeeplearningAI

Suman Das 👨🏽‍💻 ⚽ profil fotoğrafı
Suman Das 👨🏽‍💻 ⚽2 yıl önce

@weights_biases @carey_phelps Another gem.

Paul Ostergaard profil fotoğrafı
Paul Ostergaard2 yıl önce

@weights_biases @carey_phelps Love these short courses! Please keep ‘em coming!

crowdinsights profil fotoğrafı
crowdinsights2 yıl önce

@weights_biases @carey_phelps Huge fans of these courses! They're really informative, learned a lot. Thanks Andrew!🤟

Zenlytic profil fotoğrafı
Zenlytic2 yıl önce

@weights_biases @carey_phelps 🚀 Level up your ML game! Excited to announce 'Evaluating and Debugging Generative AI' with @weights_biases and @carey_phelps 🌟📊 #AIWorkshop #TechLearning

MnemicAI profil fotoğrafı
MnemicAI2 yıl önce

@weights_biases @carey_phelps Thank you - will sign up

Jan Kwapisz, Ph.D. profil fotoğrafı
Jan Kwapisz, Ph.D.2 yıl önce

@weights_biases @carey_phelps How does one can debug generative AI? Is there some secret souce?

Anthony O. Ekle profil fotoğrafı
Anthony O. Ekle2 yıl önce

@weights_biases @carey_phelps Another great course! Thanks to the DeepLearningAI team. I was wondering if there's an online course on "Graph Neural Networks or ML with Graph", or the possibility of one. Thank you! @AndrewYNg

AllThingsAI profil fotoğrafı
AllThingsAI2 yıl önce

@weights_biases @carey_phelps I extend my gratitude to DeeplearningAI for providing yet another enlightening course.

Benzer Videolar

New course to bring you up to state-of-the-art at using AI to help you code: Build Apps with Windsurf's AI Coding Agents, built in partnership with WIndsurf (Codeium) and taught by Anshul Ramachandran! AI-assisted IDEs (Integrated Development Environments) make developers’ workflows faster, more efficient, and much more fun. Agentic tools like Windsurf are more than just code autocomplete—they are collaborative coding agents that help you break down complex applications, iterate efficiently, and generate code that spans multiple files. Although a lot of coding assistants share the same underlying large language models for planning and reasoning, a major point of distinction is how they handle tools, keep track of context, and stay aligned with your intent as a developer. For instance, if you make modifications to a class definition in your code and make the same modifications to other classes in the same directory, you might tell the AI agent "Do the same thing in similar places in this directory." Here, tracking your intent means understanding that “the same thing" refers to that recent edit you just made, which must be followed by appropriate search and tool-calling to implement the changes. In this course, you'll learn the inner workings of coding agents, their strengths and limitations, and how to use Windsurf to quickly build several applications. In detail, you'll: - Build a mental model of how agents work by combining human-action tracking, tool integration, and context awareness to carry out an agentic coding workflow. - Learn the challenges of code search and discovery and how a multi-step retrieval approach helps coding agents address them. - Use Windsurf to analyze and understand a large, old codebase and update it to the latest versions of the frameworks and packages it uses. - Build a Wikipedia data analysis app that retrieves, parses, and analyzes word frequencies. - Enhance the performance of your Wikipedia analysis app by adding caching, and through this, also learn how to course-correct when the AI agent produces unexpected results. - Learn tips and tricks such as keyboard shortcuts, autocomplete, and @ mentions to quickly call on agentic capabilities. - Use image/multimodal capabilities of the AI agent to increase your development velocity; you'll see an example of uploading a mockup with sketched-out UI features, and ask the agent to use that to build new functionality to an app. By the end of this course, you’ll understand agentic coding in-depth and know how to use it to make your development process much faster, more efficient, and enjoyable. Please sign up here!

Andrew Ng

139,763 görüntüleme • 1 yıl önce

Build and customize complex AI applications with a flexible framework in this new short course, Building AI Applications with Haystack. Created in collaboration with deepset, makers of Haystack, and taught by Tuana, who is the developer relations lead for Haystack at deepset. Generative AI technology is changing rapidly and it can be challenging to integrate APIs from different LLMs, vector databases, and various tools such as web search. In this course, you will learn how to use the Haystack framework to make your development process more modular, allowing you to manage complexity and focus more on building your application. In detail, you’ll: - Build a RAG pipeline using Haystack’s main building blocks – components, pipelines, and document stores. - Create custom components in your pipeline by building a Hacker News summarizer that extends your app’s ability to access APIs. - Use conditional routing to create a branching pipeline with a fallback to web search mechanism when the LLM does not have the necessary context to respond to the user's query. - Build a self-reflecting agent for named entity recognition that loops using an output validator custom component. - Create a chat agent using OpenAI's function-calling capabilities which allow you to provide Haystack pipelines as tools to the LLM, enhancing that agent's capabilities. By the end of this course, you will learn a high-level orchestration framework that can help make your applications flexible, extendible, and maintainable, even as the technology stack changes, new user needs arise, and you add new features to your application. Please sign up here:

Andrew Ng

53,785 görüntüleme • 1 yıl önce

New course: MCP: Build Rich-Context AI Apps with Anthropic. Learn to build AI apps that access tools, data, and prompts using the Model Context Protocol in this short course, created in partnership with Anthropic Anthropic and taught by Elie Schoppik Elie Schoppik, its Head of Technical Education. Connecting AI applications to external systems that bring rich context to LLM-based applications has often meant writing custom integrations for each use case. MCP is an open protocol that standardizes how LLMs access tools, data, and prompts from external sources, and simplifies how you provide context to your LLM-based applications. For example, you can provide context via third-party tools that let your LLM make API calls to search the web, access data from local docs, retrieve code from a GitHub repo, and so on. MCP, developed by Anthropic, is based on a client-server architecture that defines the communication details between an MCP client, hosted inside the AI application, and an MCP server that exposes tools, resources, and prompt templates. The server can be a subprocess launched by the client that runs locally or an independent process running remotely. In this hands-on course, you'll learn the core architecture behind MCP. You’ll create an MCP-compatible chatbot, build and deploy an MCP server, and connect the chatbot to your MCP server and other open-source servers. Here’s what you’ll do: - Understand why MCP makes AI development less fragmented and standardizes connections between AI applications and external data sources - Learn the core components of the client-server architecture of MCP and the underlying communication mechanism - Build a chatbot with custom tools for searching academic papers, and transform it into an MCP-compatible application - Build a local MCP server that exposes tools, resources, and prompt templates using FastMCP, and test it using MCP Inspector - Create an MCP client inside your chatbot to dynamically connect to your server - Connect your chatbot to reference servers built by Anthropic’s MCP team, such as filesystem, which implements filesystem operations, and fetch, which extracts contents from the web as markdown - Configure Claude Desktop to connect to your server and others, and explore how it abstracts away the low-level logic of MCP clients - Deploy your MCP server remotely and test it with the Inspector or other MCP-compatible applications - Learn about the roadmap for future MCP development, such as multi-agent architecture, MCP registry API, server discovery, authorization, and authentication MCP is an exciting and important technology that lets you build rich-context AI applications that connect to a growing ecosystem of MCP servers, with minimal integration work. Please sign up here!

Andrew Ng

141,952 görüntüleme • 1 yıl önce