Commit ·
baea4bd
1
Parent(s): 0770387
updated config defaults
Browse files
download/hf_download_config.yaml
CHANGED
|
@@ -18,8 +18,8 @@ repo_id: "griffingoodwin04/FOXES"
|
|
| 18 |
# {aia_dir}/{local_split}/{filename} ("validation" maps to local dir "val")
|
| 19 |
# {sxr_dir}/{local_split}/{filename}
|
| 20 |
# -----------------------------------------------------------------------------
|
| 21 |
-
aia_dir: "./foxes_data/
|
| 22 |
-
sxr_dir: "./foxes_data/
|
| 23 |
|
| 24 |
# -----------------------------------------------------------------------------
|
| 25 |
# Splits to download (any subset of: train, validation, test)
|
|
|
|
| 18 |
# {aia_dir}/{local_split}/{filename} ("validation" maps to local dir "val")
|
| 19 |
# {sxr_dir}/{local_split}/{filename}
|
| 20 |
# -----------------------------------------------------------------------------
|
| 21 |
+
aia_dir: "./foxes_data/AIA_processed"
|
| 22 |
+
sxr_dir: "./foxes_data/SXR_processed"
|
| 23 |
|
| 24 |
# -----------------------------------------------------------------------------
|
| 25 |
# Splits to download (any subset of: train, validation, test)
|
download/sdo_download_config.yaml
CHANGED
|
@@ -11,10 +11,10 @@
|
|
| 11 |
# =============================================================================
|
| 12 |
|
| 13 |
download_dir: "./foxes_data/AIA_raw"
|
| 14 |
-
email: "
|
| 15 |
|
| 16 |
start_date: "2023-08-01 00:00:00"
|
| 17 |
-
end_date: "2023-
|
| 18 |
cadence: 60 # minutes between samples
|
| 19 |
|
| 20 |
wavelengths: [94, 131, 171, 193, 211, 304, 335]
|
|
|
|
| 11 |
# =============================================================================
|
| 12 |
|
| 13 |
download_dir: "./foxes_data/AIA_raw"
|
| 14 |
+
email: "your.email@example.com" # must be registered with JSOC: http://jsoc.stanford.edu/ajax/register_email.html
|
| 15 |
|
| 16 |
start_date: "2023-08-01 00:00:00"
|
| 17 |
+
end_date: "2023-08-02 00:00:00"
|
| 18 |
cadence: 60 # minutes between samples
|
| 19 |
|
| 20 |
wavelengths: [94, 131, 171, 193, 211, 304, 335]
|
download/sxr_download_config.yaml
CHANGED
|
@@ -14,6 +14,6 @@
|
|
| 14 |
save_dir: "./foxes_data/SXR_raw"
|
| 15 |
|
| 16 |
start_date: "2023-08-01"
|
| 17 |
-
end_date: "2023-08-
|
| 18 |
|
| 19 |
max_workers: 4
|
|
|
|
| 14 |
save_dir: "./foxes_data/SXR_raw"
|
| 15 |
|
| 16 |
start_date: "2023-08-01"
|
| 17 |
+
end_date: "2023-08-02"
|
| 18 |
|
| 19 |
max_workers: 4
|
forecasting/evaluation_config.yaml
CHANGED
|
@@ -7,10 +7,10 @@
|
|
| 7 |
# =============================================================================
|
| 8 |
|
| 9 |
model_predictions:
|
| 10 |
-
main_model_csv: "/
|
| 11 |
|
| 12 |
evaluation:
|
| 13 |
-
output_dir: "/
|
| 14 |
|
| 15 |
plotting:
|
| 16 |
regression_background: "black"
|
|
|
|
| 7 |
# =============================================================================
|
| 8 |
|
| 9 |
model_predictions:
|
| 10 |
+
main_model_csv: "./foxes_data/inference/predictions.csv"
|
| 11 |
|
| 12 |
evaluation:
|
| 13 |
+
output_dir: "./foxes_data/evaluation"
|
| 14 |
|
| 15 |
plotting:
|
| 16 |
regression_background: "black"
|
forecasting/inference_config.yaml
CHANGED
|
@@ -17,19 +17,20 @@ prediction_only: "false"
|
|
| 17 |
data:
|
| 18 |
# Point these directly at the folder of .npy files you want to run the model
|
| 19 |
# on — no special subfolder naming (e.g. "test/") is required or assumed.
|
| 20 |
-
|
| 21 |
-
|
| 22 |
-
|
| 23 |
-
|
|
|
|
| 24 |
|
| 25 |
-
output_path: "/
|
| 26 |
|
| 27 |
# Per-sample attention weights (64x64 CSV per timestamp). Set model_params.no_weights: true to skip.
|
| 28 |
-
weight_path: "/
|
| 29 |
|
| 30 |
# Per-patch flux contribution maps (64x64 CSV per timestamp) — saved automatically
|
| 31 |
# during inference whenever flux_path is set and model_params.no_flux is false (default).
|
| 32 |
-
flux_path: "/
|
| 33 |
|
| 34 |
model_params:
|
| 35 |
input_size: 512
|
|
|
|
| 17 |
data:
|
| 18 |
# Point these directly at the folder of .npy files you want to run the model
|
| 19 |
# on — no special subfolder naming (e.g. "test/") is required or assumed.
|
| 20 |
+
# Defaults below point at the test split data/build_dataset.py produces.
|
| 21 |
+
aia_dir: "./foxes_data/AIA_processed/test" # ignored if prediction_only: "true"
|
| 22 |
+
sxr_dir: "./foxes_data/SXR_processed/test" # ignored if prediction_only: "true"
|
| 23 |
+
sxr_norm_path: "forecasting/trained_weights_and_normalization/normalized_sxr.npy"
|
| 24 |
+
checkpoint_path: "forecasting/trained_weights_and_normalization/inverted-attention-mask.ckpt"
|
| 25 |
|
| 26 |
+
output_path: "./foxes_data/inference/predictions.csv"
|
| 27 |
|
| 28 |
# Per-sample attention weights (64x64 CSV per timestamp). Set model_params.no_weights: true to skip.
|
| 29 |
+
weight_path: "./foxes_data/inference/weights/"
|
| 30 |
|
| 31 |
# Per-patch flux contribution maps (64x64 CSV per timestamp) — saved automatically
|
| 32 |
# during inference whenever flux_path is set and model_params.no_flux is false (default).
|
| 33 |
+
flux_path: "./foxes_data/inference/flux/"
|
| 34 |
|
| 35 |
model_params:
|
| 36 |
input_size: 512
|
training/train_config.yaml
CHANGED
|
@@ -94,11 +94,11 @@ data:
|
|
| 94 |
aia_dir: "./foxes_data/AIA_processed"
|
| 95 |
sxr_dir: "./foxes_data/SXR_processed"
|
| 96 |
sxr_norm_path: "./foxes_data/normalized_sxr.npy"
|
| 97 |
-
checkpoints_dir: "./foxes_data/
|
| 98 |
num_workers: 8 # DataLoader worker processes; defaults to min(8, cpu_count()) if omitted
|
| 99 |
|
| 100 |
wandb:
|
| 101 |
-
entity: "
|
| 102 |
project: FOXES
|
| 103 |
job_type: training
|
| 104 |
tags:
|
|
|
|
| 94 |
aia_dir: "./foxes_data/AIA_processed"
|
| 95 |
sxr_dir: "./foxes_data/SXR_processed"
|
| 96 |
sxr_norm_path: "./foxes_data/normalized_sxr.npy"
|
| 97 |
+
checkpoints_dir: "./foxes_data/checkpoints/"
|
| 98 |
num_workers: 8 # DataLoader worker processes; defaults to min(8, cpu_count()) if omitted
|
| 99 |
|
| 100 |
wandb:
|
| 101 |
+
entity: "" # your W&B username or team name
|
| 102 |
project: FOXES
|
| 103 |
job_type: training
|
| 104 |
tags:
|