You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -217,11 +217,18 @@ The code also contains a module to perform inference on a glacier, by specifying
217
217
## Model inference 🔮
218
218
219
219
---
220
+
If you don't want to train the model but just run it, you can get the trained modules (```.json``` and ```.cbm```) from [Zenodo](https://zenodo.org/records/13145836),
221
+
specify their names and location in the ```config/config.yaml```, under ```model_input_dir/```, ```model_filename_xgb```,
222
+
```model_filename_cat```
223
+
and run:
220
224
```
221
225
python iceboost_deploy.py
222
226
```
223
-
This piece of code loads the two trained modules and performs model deploy on either one single glacier,
224
-
a list of glaciers, or a regional simulation of all glaciers.
227
+
The code loads the two trained modules and performs model deploy on either one single glacier,
228
+
a list of glaciers, or on all glaciers regionally. Under the hood, the code runs ```fetch_glacier_metadata.py```, which
229
+
generates the array features on-the-fly.
230
+
231
+
In ```config/config.yaml``` you can also specify the number of points you want to generate: ```generate n_points_regression```.
0 commit comments