platypus-bear commited on
Commit
5d33881
·
verified ·
1 Parent(s): d7ff8d0

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +18 -3
README.md CHANGED
@@ -1,3 +1,18 @@
1
- ---
2
- license: cc
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc
3
+ ---
4
+
5
+ Model that acheived 5th place overall on FathomNet 2025 kaggle competition (competition link: https://www.kaggle.com/competitions/fathomnet-2025/overview)
6
+
7
+ Associated code: https://github.com/robertahunt/FathomNet2025
8
+
9
+ Things I think worked well:
10
+
11
+ 1. Choosing the class which minimized the expected loss based on the distance matrix (and not the class with the highest probability) and implementing this as a matrix multiplication with the distance matrix.
12
+ Implementing a small Graph Neural Network layer - the idea here was to help in cases where there are many specimens of the same species in a single overall image, and one is easy to classify, but the other instances may be blurry. Then adding a graph layer could help guide the model to the correct classification.
13
+ 2. Using EfficientNet as a simple and fast base network, made experimenting fairly fast and simple.
14
+
15
+ Things I wish I had done differently:
16
+
17
+ 1. Setting the seed earlier: I initially used a random seed each time, which made measuring progress and reproducing results difficult. It wasn't until near the end I changed this. This is why the results using this seed also sadly do not match perfectly with the public results.
18
+ 2. Making the saving and logging process cleaner overall so it would be easier to compare results