Skip to content

BrianOfrim/SeeSea

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

61 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

SeeSea

A project that aims to see how much environmental information can be recovered from images of bodys of water (seas). For example: wind speed, wind direction, wave height, wave direction etc.

Dataset

https://huggingface.co/datasets/brianofrim/NOAA_buoycams

Model

A multiheaded regression model was chosen with an ouput head for each parameter we want to perdict.

For the model backbone a pretrained image classification model is used with the final classification layer removed to expose it's input features. These features are then pooled and connected the the regression heads.

The output of each regression head is a continuous floating point value. Eg for wind speed the regression head ouput is the prediction in m/s.

Different pretrained image classification models were tested such a various sizes of ResNets and MobileVits.

Current best results on the test data split are:

wind_speed_mps:

  • Mean Squared Error: 1.095
  • Mean Absolute Error: 0.777

wave_height_m:

  • Mean Squared Error: 0.386
  • Mean Absolute Error: 0.439

Overall (All regression heads combined):

  • Mean Squared Error: 0.741
  • Mean Absolute Error: 0.607

These results were achieved with the following training script input:

python -m seesea.model.train --log DEBUG --input /Volumes/external/NOAA_buoycams --output /Volumes/external/seesea/train --batch-size 64 --model "microsoft/resnet-50" --epochs 50 --learning-rate 0.0005 --output-names wind_speed_mps wave_height_m --rotation 12

Current best known hyperperameters:

  • Backbone pretrained image classification model: ResNet-50
  • Optimizer: AdamW
  • Learning rate: scheduler type: linear, peak=0.0005, warmup ratio:0.1
  • Epochs: 50 (~50000 total training steps)
  • Batch size: 64

Sample output

Other potential data sources

Great Lakes Environmental Research Labs webcam images:

Other Great Lakes BuoyCams (images/video):

Regional Science Consortium of Presque Isle (large galary of buoy videos):

USGS Costal cameras:

Live surf cameras:

About

Sensing environmental conditions with images

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages