Downloads · 30 days
0
KYMEKAdavide/testcnn
testcnn is a machine learning model from KYMEKAdavide. Use it for the machine learning task on the model card, and read the license before you ship it in a product. It is set up for tf-keras.
Downloads · 30 days
0
Access
Public
Updated Mar 5, 2025
Repo size
6.4 MB
Likes
0
Public
Click a slice to open those files.
.h53 MB · 47%
From the Hugging Face model README
MNIST CNN 모델 예시가 들어있습니다.
testcnn_model.h5 (Keras H5 방식)saved_mnist_model/ (SavedModel 방식)import tensorflow as tf
model = tf.keras.models.load_model("testcnn_model.h5")
prediction = model.predict(...)