Image Classification
annanau commited on
Commit
a37ae79
·
verified ·
1 Parent(s): 85d9ac0

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +7 -4
README.md CHANGED
@@ -15,24 +15,27 @@ This CNN model was developed to perform human bodypart classification.
15
  - **Model type:** CNNs for Image Classification
16
  - **Base Model:** InceptionV3 pretrained on ImageNet
17
 
 
 
 
 
 
18
  ## Dataset
19
 
20
  - Dataset Name: Human Decomposition Image Dataset
21
  - Source: The dataset used in this study was obtained from the Forensic Anthropology Center (FAC) at the University of Tennessee, Knoxville, but due to privacy considerations, it is not available for public access. Please reach out to obtain access.
22
- - Classes: 'arm', 'hand', 'foot', 'legs','fullbody','head','backside', 'torso', 'stake', 'plastic'. 'stake' and 'plastic' classes were
23
  included for filtering out images where bodyparts are covered with plastic or images showing stake with unanonymized donor IDs,
24
  which is often the case in forensic anthropology.
25
 
26
  ## Usage
27
- The stage of decay classification is bodypart specific (i.e., head, torso, or limbs), so make sure to pick the correct bodypart model.
28
-
29
  ```python
30
  from tensorflow.keras.models import load_model
31
  import numpy as np
32
  from tensorflow.keras.preprocessing.image import img_to_array, load_img
33
 
34
  # Load the entire model
35
- model = load_model('path_to_your_model') # e.g. head/inceptionV3 to perform stage of decay classfication of head images
36
 
37
  # Load and preprocess an image
38
  img = load_img('path_to_image.jpg', target_size=(299, 299)) # adjust size as per model input
 
15
  - **Model type:** CNNs for Image Classification
16
  - **Base Model:** InceptionV3 pretrained on ImageNet
17
 
18
+ ### Model Sources
19
+
20
+ - **Paper :**
21
+ - [Collaborative Learning of Semi-Supervised Clustering and Classification for Labeling Uncurated Data](https://ieeexplore.ieee.org/abstract/document/10222106)
22
+
23
  ## Dataset
24
 
25
  - Dataset Name: Human Decomposition Image Dataset
26
  - Source: The dataset used in this study was obtained from the Forensic Anthropology Center (FAC) at the University of Tennessee, Knoxville, but due to privacy considerations, it is not available for public access. Please reach out to obtain access.
27
+ - Classes: arm, hand, foot, legs, fullbody, head, backside, torso, stake, and plastic. stake and plastic classes were
28
  included for filtering out images where bodyparts are covered with plastic or images showing stake with unanonymized donor IDs,
29
  which is often the case in forensic anthropology.
30
 
31
  ## Usage
 
 
32
  ```python
33
  from tensorflow.keras.models import load_model
34
  import numpy as np
35
  from tensorflow.keras.preprocessing.image import img_to_array, load_img
36
 
37
  # Load the entire model
38
+ model = load_model('inception_acc_0.989001-_val_acc_0.98252.h5')
39
 
40
  # Load and preprocess an image
41
  img = load_img('path_to_image.jpg', target_size=(299, 299)) # adjust size as per model input