ekenkel commited on
Commit
3856bb9
·
1 Parent(s): 19e03dc

updated readme

Browse files
Files changed (1) hide show
  1. README.md +1 -1
README.md CHANGED
@@ -27,7 +27,7 @@ I randomly split the data:
27
  - 80% training set
28
  - 20% validation set
29
 
30
- I trained using the ConvNeXt-22k convolution neural network and 11 epochs.
31
 
32
  I previously attained 75% accuracy. I made improvements by resizing each image to the same dimension (460x460 px) and then doing augmentations on the batches (distortion, lighting, cropping). I also froze the pretrained model (ConvNeXt-22k) layers, and trained my newly added layers for 3 epochs. I saved time and GPU memory by using half-precision floating point where applicable during training.
33
 
 
27
  - 80% training set
28
  - 20% validation set
29
 
30
+ I trained using the ConvNeXt-22k convolution neural network architecture with 11 epochs and a base learning rate of 1e-3.
31
 
32
  I previously attained 75% accuracy. I made improvements by resizing each image to the same dimension (460x460 px) and then doing augmentations on the batches (distortion, lighting, cropping). I also froze the pretrained model (ConvNeXt-22k) layers, and trained my newly added layers for 3 epochs. I saved time and GPU memory by using half-precision floating point where applicable during training.
33