maitri01 commited on
Commit
aa554d0
·
verified ·
1 Parent(s): 45c3161

Update hackathon_setup.sh

Browse files
Files changed (1) hide show
  1. hackathon_setup.sh +19 -16
hackathon_setup.sh CHANGED
@@ -9,22 +9,6 @@
9
  # Run with: source hackathon_setup.sh
10
  # =============================================================
11
 
12
- RED='\033[0;31m'
13
- GREEN='\033[0;32m'
14
- YELLOW='\033[1;33m'
15
- BLUE='\033[0;34m'
16
- NC='\033[0m'
17
-
18
- _log() { echo -e "${BLUE}[INFO]${NC} $1"; }
19
- _ok() { echo -e "${GREEN}[OK]${NC} $1"; }
20
- _warn() { echo -e "${YELLOW}[WARN]${NC} $1"; }
21
- _error() { echo -e "${RED}[ERROR]${NC} $1"; }
22
-
23
- if [[ "${BASH_SOURCE[0]}" == "${0}" ]]; then
24
- _error "This script must be sourced: source hackathon_setup.sh"
25
- exit 1
26
- fi
27
-
28
  # =============================================================
29
  # CONFIGURATION — edit before running
30
  # =============================================================
@@ -43,6 +27,25 @@ YOUR_FOLDER="" # <-- replace with your username
43
  # Team folder inside your folder (shared with teammates)
44
  TEAM_FOLDER="" # <-- replace with your team_name
45
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
46
  # HuggingFace datasets to download (org/repo format)
47
  HF_DATASETS=(
48
  "SprintML/llm_watermark_removal"
 
9
  # Run with: source hackathon_setup.sh
10
  # =============================================================
11
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
12
  # =============================================================
13
  # CONFIGURATION — edit before running
14
  # =============================================================
 
27
  # Team folder inside your folder (shared with teammates)
28
  TEAM_FOLDER="" # <-- replace with your team_name
29
 
30
+ # =============================================================
31
+
32
+ RED='\033[0;31m'
33
+ GREEN='\033[0;32m'
34
+ YELLOW='\033[1;33m'
35
+ BLUE='\033[0;34m'
36
+ NC='\033[0m'
37
+
38
+ _log() { echo -e "${BLUE}[INFO]${NC} $1"; }
39
+ _ok() { echo -e "${GREEN}[OK]${NC} $1"; }
40
+ _warn() { echo -e "${YELLOW}[WARN]${NC} $1"; }
41
+ _error() { echo -e "${RED}[ERROR]${NC} $1"; }
42
+
43
+ if [[ "${BASH_SOURCE[0]}" == "${0}" ]]; then
44
+ _error "This script must be sourced: source hackathon_setup.sh"
45
+ exit 1
46
+ fi
47
+
48
+
49
  # HuggingFace datasets to download (org/repo format)
50
  HF_DATASETS=(
51
  "SprintML/llm_watermark_removal"