Derrick Mwiti

Google Developer Expert - Machine Learning

How to Train YOLOv5 Object Detection on Custom Data Members Public

One of the most popular choices for object detection models is the YOLO family of models. This model stands out because it utilizes a single detector for object detection, simplifying the detection process and making it more efficient. Initially developed in DarkNet, a deep learning framework written in C, the

Derrick Mwiti
Derrick Mwiti
yolo

Text Classification With BERT and KerasNLP Members Public

BERT is a popular Masked Language Model. Some words are hidden from the model and trained to predict them. The model is bidirectional, meaning it has access to the words to the left and right, making it a good choice for tasks such as text classification. Training BERT can quickly

Derrick Mwiti
Derrick Mwiti
TensorFlow

How to Build Large Language Model Applications with PaLM API and LangChain Members Public

You can now use Generative AI Studio on Vertex AI to prompt, tune and deploy Google's foundational models, including PaLM 2, Imagen, Codey, and Chirp. You can easily design and fine-tune your prompt and copy the code required to deploy the solution.   Leveraging a foundational model is a no-brainer because

Derrick Mwiti
Derrick Mwiti
llms

How to Perform Image Augmentation With KerasCV Members Public

Training computer vision models with little data can lead to poor model performance. This problem can be solved by generating new data samples from the existing images. For example, you can create new images by flipping and rotating the existing ones. Generating new image samples from existing ones is known

Derrick Mwiti
Derrick Mwiti
TensorFlow

Serving Keras Models With TensorFlow Members Public

The next step after training a model with TensorFlow is to deploy it. TensorFlow Serving is a great choice for serving TensorFlow models. Discover how to serve models using TensorFlow serving in this article. What is TensorFlow Serving? TensorFlow Serving is a tool for deploying machine learning models in production

Derrick Mwiti
Derrick Mwiti
TensorFlow

How to Build LLM Applications With LangChain and Openai Members Public

LangChain is an open-source tool for building large language model (LLM) applications. It supports a variety of open-source and closed models, making it easy to create these applications with one tool. Some of the modules in Langchain include: * Models for supported models and integrations * Prompts for making it easy to

Derrick Mwiti
Derrick Mwiti
LangChain

How to Create Word Embeddings With TensorFlow Members Public

Context length is one of the biggest problems with GPT models such as ChatGPT. There is a limitation on the number of words in your prompt because these models can only accept a certain number of tokens. The solution? Embeddings. mlnuggets newsletter Join the newsletter to receive the technical deep

Derrick Mwiti
Derrick Mwiti
TensorFlow

How to Train Stable Diffusion With Keras Members Public

Image generation models are causing a sensation worldwide, particularly the powerful Stable Diffusion technique. With Stable Diffusion, you can generate images with your laptop, which was previously impossible. Here's how diffusion models work in plain English: 1. Generating images involves two processes. Diffusion adds noise gradually to the image until

Derrick Mwiti
Derrick Mwiti
TensorFlow