-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrun_ensemble_generation.sh
More file actions
30 lines (26 loc) · 1.01 KB
/
run_ensemble_generation.sh
File metadata and controls
30 lines (26 loc) · 1.01 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
#!/bin/bash
# Example script to run ensemble generation with PDB export
#
# Usage: bash run_ensemble_generation.sh
# PROTEIN="7jfl"
# MODEL_PATH="train_logs/progsnn_logs_run_atlas_2026-01-26-120329/model_FINAL_7jfl.pt"
# OUTPUT_DIR="Generation/Ensemble/${PROTEIN}"
echo "================================================================"
echo "Running Ensemble Generation for ${PROTEIN}"
echo "================================================================"
echo ""
echo "Output directory: ${OUTPUT_DIR}"
echo "Model path: ${MODEL_PATH}"
echo ""
python ensemble_gen.py --n_pdb_samples 1000
echo ""
echo "================================================================"
echo "Ensemble generation complete!"
echo "================================================================"
echo ""
echo "Generated files:"
echo " - Latent samples: ${OUTPUT_DIR}/generated_samples.npy"
echo " - PDB files: ${OUTPUT_DIR}/generated_pdbs/"
echo " - Metrics: ${OUTPUT_DIR}/metrics.json"
echo " - Visualizations: ${OUTPUT_DIR}/*.png"
echo ""