Spaces:
Sleeping
Sleeping
Update pipeline.sh
Browse files- pipeline.sh +4 -0
pipeline.sh
CHANGED
|
@@ -1,5 +1,6 @@
|
|
| 1 |
#!/bin/bash
|
| 2 |
set -euo pipefail
|
|
|
|
| 3 |
|
| 4 |
# =============================================================================
|
| 5 |
# BENGALI-CODE LLM - DEV PIPELINE SCRIPT
|
|
@@ -8,6 +9,9 @@ set -euo pipefail
|
|
| 8 |
|
| 9 |
echo "🚀 Initializing Dev Pipeline..."
|
| 10 |
|
|
|
|
|
|
|
|
|
|
| 11 |
# --- Configuration ---
|
| 12 |
VOCAB_SIZE=16000 # Smaller vocab for faster dev run
|
| 13 |
PROJECT_DIR="$(pwd)"
|
|
|
|
| 1 |
#!/bin/bash
|
| 2 |
set -euo pipefail
|
| 3 |
+
set -x # MODIFICATION: Add this line to print every command
|
| 4 |
|
| 5 |
# =============================================================================
|
| 6 |
# BENGALI-CODE LLM - DEV PIPELINE SCRIPT
|
|
|
|
| 9 |
|
| 10 |
echo "🚀 Initializing Dev Pipeline..."
|
| 11 |
|
| 12 |
+
# ... the rest of the file is exactly the same ...
|
| 13 |
+
# (No other changes needed in this file)
|
| 14 |
+
|
| 15 |
# --- Configuration ---
|
| 16 |
VOCAB_SIZE=16000 # Smaller vocab for faster dev run
|
| 17 |
PROJECT_DIR="$(pwd)"
|