Update README.md
Browse files
README.md
CHANGED
|
@@ -2,21 +2,15 @@
|
|
| 2 |
license: mit
|
| 3 |
language:
|
| 4 |
- en
|
| 5 |
-
---
|
| 6 |
-
license: mit
|
| 7 |
tags:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 8 |
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
imageomics
|
| 12 |
-
|
| 13 |
-
ecology
|
| 14 |
-
|
| 15 |
-
climate-change
|
| 16 |
-
|
| 17 |
-
tabular-classification
|
| 18 |
-
|
| 19 |
-
🪲 Beetle Drought Predictor (HDR-SMood Challenge)
|
| 20 |
|
| 21 |
This repository hosts the official model weights for Team nebiyu's first-place submission to the Imageomics HDR-SMood Challenge.
|
| 22 |
|
|
@@ -30,7 +24,7 @@ Model Type: Deep Learning Regression (Vision + Metadata)
|
|
| 30 |
|
| 31 |
Format: Keras (.keras)
|
| 32 |
|
| 33 |
-
|
| 34 |
|
| 35 |
🔗 Training Code & GitHub Repository
|
| 36 |
|
|
@@ -48,11 +42,11 @@ To load this model locally for inference:
|
|
| 48 |
|
| 49 |
import tensorflow as tf
|
| 50 |
|
| 51 |
-
# Load the model
|
| 52 |
model = tf.keras.models.load_model("best_beetle_model.keras")
|
| 53 |
|
| 54 |
-
# The model expects a tuple of inputs: (images, metadata)
|
| 55 |
-
# predictions = model.predict([image_batch, metadata_batch])
|
| 56 |
|
| 57 |
|
| 58 |
For the complete batch inference pipeline, including dynamic image resizing and metadata handling, please refer to the model.py script in the linked GitHub repository.
|
|
|
|
| 2 |
license: mit
|
| 3 |
language:
|
| 4 |
- en
|
|
|
|
|
|
|
| 5 |
tags:
|
| 6 |
+
- computer-vision
|
| 7 |
+
- imageomics
|
| 8 |
+
- ecology
|
| 9 |
+
- climate-change
|
| 10 |
+
- tabular-classification
|
| 11 |
+
---
|
| 12 |
|
| 13 |
+
# 🪲 Beetle Drought Predictor (HDR-SMood Challenge)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 14 |
|
| 15 |
This repository hosts the official model weights for Team nebiyu's first-place submission to the Imageomics HDR-SMood Challenge.
|
| 16 |
|
|
|
|
| 24 |
|
| 25 |
Format: Keras (.keras)
|
| 26 |
|
| 27 |
+
|
| 28 |
|
| 29 |
🔗 Training Code & GitHub Repository
|
| 30 |
|
|
|
|
| 42 |
|
| 43 |
import tensorflow as tf
|
| 44 |
|
| 45 |
+
## Load the model
|
| 46 |
model = tf.keras.models.load_model("best_beetle_model.keras")
|
| 47 |
|
| 48 |
+
### The model expects a tuple of inputs: (images, metadata)
|
| 49 |
+
### predictions = model.predict([image_batch, metadata_batch])
|
| 50 |
|
| 51 |
|
| 52 |
For the complete batch inference pipeline, including dynamic image resizing and metadata handling, please refer to the model.py script in the linked GitHub repository.
|