File size: 733 Bytes
73d531c 824c78e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
---
tags:
- image-classification
- tensorflow
- keras
pipeline_tag: image-classification
---
# Your Model Name
這是使用 TensorFlow 和 Keras 訓練的圖像分類模型。模型是基於 [某某數據集](https://example.com) 訓練的。
## 使用方法
### Python 示例
```python
import tensorflow as tf
import numpy as np
# 加載模型
model = tf.keras.models.load_model("path/to/your/saved_model")
# 使用模型進行預測
image = tf.keras.preprocessing.image.load_img("path/to/your/image.jpg", target_size=(224, 224))
input_arr = tf.keras.preprocessing.image.img_to_array(image)
input_arr = np.array([input_arr]) # 將單張圖片轉換為批處理格式
predictions = model.predict(input_arr)
print(predictions) |