Update README.md
Browse files
README.md
CHANGED
@@ -6,9 +6,58 @@ language:
|
|
6 |
- en
|
7 |
metrics:
|
8 |
- accuracy
|
9 |
-
library_name: adapter-transformers
|
10 |
pipeline_tag: image-classification
|
11 |
tags:
|
12 |
- medical
|
13 |
- biology
|
14 |
-
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6 |
- en
|
7 |
metrics:
|
8 |
- accuracy
|
|
|
9 |
pipeline_tag: image-classification
|
10 |
tags:
|
11 |
- medical
|
12 |
- biology
|
13 |
+
---
|
14 |
+
|
15 |
+
|
16 |
+
# Brain_Tumor_Classification
|
17 |
+
|
18 |
+
This model is a fine-tuned version on the braTS20 dataset.
|
19 |
+
It achieves the following results on the evaluation set:
|
20 |
+
- Loss: 0.0272
|
21 |
+
- Accuracy: 0.9912
|
22 |
+
|
23 |
+
|
24 |
+
## Model description
|
25 |
+
|
26 |
+
More information needed
|
27 |
+
|
28 |
+
## Intended uses & limitations
|
29 |
+
|
30 |
+
More information needed
|
31 |
+
|
32 |
+
## Training and evaluation data
|
33 |
+
|
34 |
+
More information needed
|
35 |
+
|
36 |
+
## Training procedure
|
37 |
+
### Training hyperparameters
|
38 |
+
|
39 |
+
The following hyperparameters were used during training:
|
40 |
+
- learning_rate: 0.000001
|
41 |
+
- min_lr=0.000001
|
42 |
+
- train_batch_size: 32
|
43 |
+
- eval_batch_size: 32
|
44 |
+
- optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
|
45 |
+
- lr_scheduler_type: linear
|
46 |
+
- lr_scheduler_warmup_ratio: 0.1
|
47 |
+
- num_epochs: 5
|
48 |
+
|
49 |
+
### Training results
|
50 |
+
|
51 |
+
| Training Loss |Epoch| Step | Validation Loss| Accuracy |
|
52 |
+
|:-------------:|:--:|:----:|:---------------:|:--------:|
|
53 |
+
| 0.3208 | 1 | 83 | 0.3162 | 0.9461 |
|
54 |
+
| 0.0392 | 2 | 166 | 0.1177 | 0.9893 |
|
55 |
+
| 0.0326 | 3 | 249 | 0.2596 | 0.9899 |
|
56 |
+
| 0.0351 | 4 | 332 | 0.3398 | 0.9888 |
|
57 |
+
| 0.0272 | 5 | 415 | 0.2636 | 0.9912 |
|
58 |
+
### Framework
|
59 |
+
|
60 |
+
- Keras
|
61 |
+
- Pytorch
|
62 |
+
- TensorFlow
|
63 |
+
- Datasets
|