Skip to content

Commit

Permalink
update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
dfulu committed Dec 22, 2023
1 parent 325ef5a commit d6a6a22
Showing 1 changed file with 19 additions and 15 deletions.
34 changes: 19 additions & 15 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

This project is used for training PVNet and running PVnet on live data.

PVNet2 largely inherits the same architecture from
PVNet2 is a multi-modal late-fusion model that largely inherits the same architecture from
[PVNet1.0](https://github.com/openclimatefix/predict_pv_yield). The NWP and
satellite data are sent through some neural network which encodes them down to
1D intermediate representations. These are concatenated together with the GSP
Expand All @@ -14,6 +14,12 @@ feature vector is put through an output network which outputs predictions of the
future GSP yield. National forecasts are made by adding all the GSP forecasts
together.


## Experiments

Some quite rough working notes on experiments training this model and running it in production are
[here](https://docs.google.com/document/d/1fbkfkBzp16WbnCg7RDuRDvgzInA6XQu3xh4NCjV-WDA/edit?usp=sharing).

## Setup / Installation

```bash
Expand All @@ -37,7 +43,8 @@ configs directory:
cp -r configs.example configs
```

You will be making local amendments to these configs
You will be making local amendments to these configs. See the README in
`configs.example` for more info.

### Datasets

Expand Down Expand Up @@ -108,16 +115,16 @@ input_data:
forecast_minutes: 120
time_resolution_minutes: 60
nwp_channels: # comment out channels as appropriate
- t # live = t2m
- dswrf
- dlwrf
- hcc
- MCC
- lcc
- vis
- r # live = r2
- prate # live ~= rprate
- si10 # 10-metre wind speed | live = unknown
- t # 2-metre temperature
- dswrf # downwards short-wave radiation flux
- dlwrf # downwards long-wave radiation flux
- hcc # high cloud cover
- mcc # medium cloud cover
- lcc # low cloud cover
- vis # visability
- r # relative humidity
- prate # precipitation rate
- si10 # 10-metre wind speed | live = unknown
nwp_image_size_pixels_height: 24
nwp_image_size_pixels_width: 24
nwp_provider: ukv
Expand Down Expand Up @@ -333,7 +340,4 @@ python run.py

You can use `python -m pytest tests` to run tests

## Experiments

Notes on these experiments are
[here](https://docs.google.com/document/d/1fbkfkBzp16WbnCg7RDuRDvgzInA6XQu3xh4NCjV-WDA/edit?usp=sharing).

0 comments on commit d6a6a22

Please sign in to comment.