Upload scripts/upload_restfiles_hf.py
Browse files
scripts/upload_restfiles_hf.py
CHANGED
|
@@ -16,21 +16,29 @@ root_dir = Path(".")
|
|
| 16 |
# figures, mini-release files, temporary picker outputs, and old root-level
|
| 17 |
# helper scripts.
|
| 18 |
manifest_path = root_dir / "manifest_sha256.txt"
|
| 19 |
-
delete_remote_extras =
|
| 20 |
force_update_prefixes = (
|
| 21 |
"scripts/",
|
| 22 |
"essd_scripts/",
|
| 23 |
"utils/",
|
| 24 |
"notebooks/",
|
| 25 |
-
"data/validation/",
|
| 26 |
)
|
| 27 |
force_update_paths = {
|
| 28 |
".gitattributes",
|
| 29 |
".gitignore",
|
|
|
|
| 30 |
"LICENSE",
|
|
|
|
| 31 |
"README.md",
|
| 32 |
"README.zh.md",
|
| 33 |
"data/preview/seismicx_cont_file_index.csv",
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 34 |
"dataset_plot_data.json",
|
| 35 |
"logo.png",
|
| 36 |
"manifest_filesizes.tsv",
|
|
@@ -47,6 +55,13 @@ additional_release_paths = {
|
|
| 47 |
"data/validation/multi_output_manual_reference_match.json",
|
| 48 |
"data/validation/multi_output_manual_reference_match.tsv",
|
| 49 |
"data/validation/output_eligibility_summary.json",
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 50 |
}
|
| 51 |
# =========================
|
| 52 |
|
|
|
|
| 16 |
# figures, mini-release files, temporary picker outputs, and old root-level
|
| 17 |
# helper scripts.
|
| 18 |
manifest_path = root_dir / "manifest_sha256.txt"
|
| 19 |
+
delete_remote_extras = False
|
| 20 |
force_update_prefixes = (
|
| 21 |
"scripts/",
|
| 22 |
"essd_scripts/",
|
| 23 |
"utils/",
|
| 24 |
"notebooks/",
|
|
|
|
| 25 |
)
|
| 26 |
force_update_paths = {
|
| 27 |
".gitattributes",
|
| 28 |
".gitignore",
|
| 29 |
+
"CITATION.cff",
|
| 30 |
"LICENSE",
|
| 31 |
+
"LICENSE_CLARIFICATION.md",
|
| 32 |
"README.md",
|
| 33 |
"README.zh.md",
|
| 34 |
"data/preview/seismicx_cont_file_index.csv",
|
| 35 |
+
"data/validation/README.md",
|
| 36 |
+
"data/validation/manuscript_number_audit.json",
|
| 37 |
+
"data/validation/multi_output_eligibility_normalized_match.json",
|
| 38 |
+
"data/validation/multi_output_eligibility_normalized_match.tsv",
|
| 39 |
+
"data/validation/multi_output_manual_reference_match.json",
|
| 40 |
+
"data/validation/multi_output_manual_reference_match.tsv",
|
| 41 |
+
"data/validation/output_eligibility_summary.json",
|
| 42 |
"dataset_plot_data.json",
|
| 43 |
"logo.png",
|
| 44 |
"manifest_filesizes.tsv",
|
|
|
|
| 55 |
"data/validation/multi_output_manual_reference_match.json",
|
| 56 |
"data/validation/multi_output_manual_reference_match.tsv",
|
| 57 |
"data/validation/output_eligibility_summary.json",
|
| 58 |
+
"data/validation/multi_output_eligibility_normalized_match.json",
|
| 59 |
+
"data/validation/multi_output_eligibility_normalized_match.tsv",
|
| 60 |
+
"scripts/build_all_model_phase_catalog.py",
|
| 61 |
+
"scripts/build_output_eligibility.py",
|
| 62 |
+
"scripts/run_all_model_phase_catalog.sh",
|
| 63 |
+
"scripts/upload_all_model_phase_catalog.py",
|
| 64 |
+
"scripts/validate_multi_output_candidates.py",
|
| 65 |
}
|
| 66 |
# =========================
|
| 67 |
|