admin
commited on
Commit
·
aceea95
1
Parent(s):
51d0d96
upd md
Browse files
README.md
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
---
|
2 |
license: mit
|
3 |
datasets:
|
4 |
-
-
|
5 |
tags:
|
6 |
- medical
|
7 |
- biology
|
@@ -13,30 +13,30 @@ tags:
|
|
13 |
The HEp-2 cell image classification model is a deep learning model designed specifically for the cell image classification task, using deep convolutional neural network techniques. The training data for the model comes from the HEp-2 cell image dataset, which originated from the cell image classification competition at the 2014 International Pattern Recognition Conference. The dataset consists of images categorized into a training set (8,701 images), a validation set (2,175 images), and a test set (2,720 images). In addition, a .csv file is provided containing two columns of data: the first column is the image ID, which matches the name of the image in the three datasets; the second column is the category of the cell image. The model draws on the classical structure of AlexNet and is based on a deep convolutional neural network, including components such as convolutional, pooling, and fully connected layers, with powerful image feature learning capabilities. Its main training goal is to acquire discriminative features for the HEp-2 cell image classification task in order to improve the classification performance on both validation and test sets. The model is trained to efficiently capture critical information in HEp-2 cell images in order to accurately classify the images.
|
14 |
|
15 |
## 在线体验 Demo
|
16 |
-
<https://www.modelscope.cn/studios/
|
17 |
|
18 |
## 维护 Maintenance
|
19 |
```bash
|
20 |
-
git clone git@hf.co:
|
21 |
cd HEp2
|
22 |
```
|
23 |
|
24 |
## 使用 Usage
|
25 |
```python
|
26 |
from modelscope import snapshot_download
|
27 |
-
model_dir = snapshot_download("
|
28 |
```
|
29 |
|
30 |
## 数据集 Dataset
|
31 |
-
<https://www.modelscope.cn/datasets/
|
32 |
|
33 |
## 训练曲线 Training curve
|
34 |
-
| Accuracy | ![](https://www.modelscope.cn/models/
|
35 |
-
| :---------: |
|
36 |
-
| <b>Loss</b> | ![](https://www.modelscope.cn/models/
|
37 |
|
38 |
## 镜像 Mirror
|
39 |
-
<https://www.modelscope.cn/models/
|
40 |
|
41 |
## 参考引用 Reference
|
42 |
-
[1] <https://github.com/
|
|
|
1 |
---
|
2 |
license: mit
|
3 |
datasets:
|
4 |
+
- MuGemSt/HEp2
|
5 |
tags:
|
6 |
- medical
|
7 |
- biology
|
|
|
13 |
The HEp-2 cell image classification model is a deep learning model designed specifically for the cell image classification task, using deep convolutional neural network techniques. The training data for the model comes from the HEp-2 cell image dataset, which originated from the cell image classification competition at the 2014 International Pattern Recognition Conference. The dataset consists of images categorized into a training set (8,701 images), a validation set (2,175 images), and a test set (2,720 images). In addition, a .csv file is provided containing two columns of data: the first column is the image ID, which matches the name of the image in the three datasets; the second column is the category of the cell image. The model draws on the classical structure of AlexNet and is based on a deep convolutional neural network, including components such as convolutional, pooling, and fully connected layers, with powerful image feature learning capabilities. Its main training goal is to acquire discriminative features for the HEp-2 cell image classification task in order to improve the classification performance on both validation and test sets. The model is trained to efficiently capture critical information in HEp-2 cell images in order to accurately classify the images.
|
14 |
|
15 |
## 在线体验 Demo
|
16 |
+
<https://www.modelscope.cn/studios/MuGemSt/HEp2>
|
17 |
|
18 |
## 维护 Maintenance
|
19 |
```bash
|
20 |
+
git clone git@hf.co:MuGemSt/HEp2
|
21 |
cd HEp2
|
22 |
```
|
23 |
|
24 |
## 使用 Usage
|
25 |
```python
|
26 |
from modelscope import snapshot_download
|
27 |
+
model_dir = snapshot_download("MuGemSt/HEp2")
|
28 |
```
|
29 |
|
30 |
## 数据集 Dataset
|
31 |
+
<https://www.modelscope.cn/datasets/MuGemSt/HEp2>
|
32 |
|
33 |
## 训练曲线 Training curve
|
34 |
+
| Accuracy | ![](https://www.modelscope.cn/models/MuGemSt/HEp2/resolve/master/acc.jpg) |
|
35 |
+
| :---------: | :------------------------------------------------------------------------: |
|
36 |
+
| <b>Loss</b> | ![](https://www.modelscope.cn/models/MuGemSt/HEp2/resolve/master/loss.jpg) |
|
37 |
|
38 |
## 镜像 Mirror
|
39 |
+
<https://www.modelscope.cn/models/MuGemSt/HEp2>
|
40 |
|
41 |
## 参考引用 Reference
|
42 |
+
[1] <https://github.com/MuGemSt/Medical_Image_Computing/tree/hep2>
|