Articles by Tag #keras

Browse our collection of articles on various topics related to IT technologies. Dive in and explore something new!

ResNet Vs EfficientNet vs VGG Vs NN

As a student, I've witnessed firsthand the frustration caused by our university's inefficient lost...

Learn More 8 0Aug 25 '24

Fashion Forward: Leveraging Keras 3.0 for Beginner-Friendly Deep Learning

Exploring the New Features of Keras 3.0 with CNNs on Fashion MNIST In this post, we will...

Learn More 4 2Sep 30 '24

Update

🌟 Sharing some recent developments! 🔹 Gesture Sign Language Detection Project 🤝 Delved into OpenCV ,...

Learn More 2 0Dec 9 '24

Getting Started with TensorFlow and Keras

Machine learning is one of the most exciting fields in modern technology, and TensorFlow and Keras...

Learn More 2 0Feb 19

Visualizing a Keras model

This: my_model.summary() Enter fullscreen mode Exit fullscreen mode ...

Learn More 0 0Aug 20 '24

Keras: Understanding the Basics with a Detailed Example

Hi devs, If you're new to deep learning, you've likely come across the name Keras. But what is it...

Learn More 0 0Oct 20 '24

Setting up early stopping and auto checkpoint on Keras

model_checkpoint = keras.callbacks.ModelCheckpoint('my_model.keras',...

Learn More 0 0Aug 19 '24

Plotting Keras training history with Matplotlib

import matplotlib.pyplot as plt def plot_training(history): plt.figure(figsize=(8, 5)) # 8x5...

Learn More 0 0Aug 20 '24

Setting up a seed on Keras

import random import numpy as np import tensorflow as tf seed =...

Learn More 0 0Aug 19 '24

Preventing Keras to allocate unnecessary GPU memory

gpus = tf.config.experimental.list_physical_devices('GPU') for gpu in gpus: ...

Learn More 0 0Aug 19 '24