aadd77551 commited on
Commit
824c78e
1 Parent(s): 82c9eca

Update README.md

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