nailashfrni commited on
Commit
70003a8
1 Parent(s): 69cdd3e

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +64 -0
README.md ADDED
@@ -0,0 +1,64 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ datasets:
2
+ - rice
3
+ metrics:
4
+ - accuracy
5
+ model-index:
6
+ - name: rice_classification
7
+ results:
8
+ - task:
9
+ name: Image Classification
10
+ type: image-classification
11
+ dataset:
12
+ name: rice
13
+ type: rice
14
+ config: default
15
+ split: train
16
+ args: default
17
+ metrics:
18
+ - name: Accuracy
19
+ type: accuracy
20
+ value: 0.9768
21
+ ---
22
+
23
+ <!-- This model card has been generated automatically according to the information the Trainer had access to. You
24
+ should probably proofread and complete it, then remove this comment. -->
25
+
26
+ # image_classification
27
+
28
+ This model is a CNN model on the rice dataset to classify rice into 5 classes (Arborio, Basmati, Ipsala, Jasmine and Karacadag).
29
+ It achieves the following results on the evaluation set:
30
+ - Loss: 0.0116
31
+ - Accuracy: 0.9768
32
+
33
+ ## Model description
34
+
35
+ More information needed
36
+
37
+ ## Intended uses & limitations
38
+
39
+ More information needed
40
+
41
+ ## Training and evaluation data
42
+
43
+ More information needed
44
+
45
+ ## Training procedure
46
+
47
+ ### Training hyperparameters
48
+
49
+ The following hyperparameters were used during training:
50
+ - learning_rate: 0.001
51
+ - train_batch_size: 16
52
+ - eval_batch_size: 16
53
+ - optimizer: Adam
54
+ - num_epochs: 5
55
+
56
+ ### Training results
57
+
58
+ | Epoch | Loss | Accuracy |
59
+ |:-----:|:------:|:--------:|
60
+ | 1.0 | 0.0510 | 0.9363 |
61
+ | 2.0 | 0.0099 | 0.9695 |
62
+ | 3.0 | 0.5962 | 0.9767 |
63
+ | 4.0 | 0.4232 | 0.9828 |
64
+ | 5.0 | 0.0011 | 0.9859 |