-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcalkit.yaml
More file actions
47 lines (43 loc) · 1.03 KB
/
calkit.yaml
File metadata and controls
47 lines (43 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
title: MATLAB example
description: >
This project shows how to incorporate MATLAB into a reproducible
research project.
# environments:
# matlab:
# kind: matlab
# version: R2024b
# products:
# - Statistics_and_Machine_Learning_Toolbox
# - Parallel_Computing_Toolbox
pipeline:
stages:
collect-data:
kind: matlab-script
script_path: scripts/collect_data.m
environment: _system
inputs:
- src/myfunction.m
outputs:
- path: data/raw/data.parquet
storage: dvc
plot-data:
kind: matlab-script
script_path: scripts/plot_data.m
environment: _system
inputs:
- data/raw/data.parquet
outputs:
- path: figures/plot.png
storage: dvc
datasets:
- path: data/raw/data.parquet
title: Raw data
description: The raw data from the experiment.
stage: collect-data
figures:
- path: figures/plot.png
title: The plot
description: The plot.
stage: plot-data
showcase:
- figure: figures/plot.png