From dd6f308af7263b4fe0a394ac8daaf0cf0cef3fac Mon Sep 17 00:00:00 2001 From: suryacharan945 Date: Sat, 28 Feb 2026 21:19:33 +0530 Subject: [PATCH] Add requirements.txt, improve README setup instructions, and remove .DS_Store --- .DS_Store | Bin 6148 -> 0 bytes README.md | 12 ++++++++++++ requirements.txt | 9 +++++++++ 3 files changed, 21 insertions(+) delete mode 100644 .DS_Store create mode 100644 requirements.txt diff --git a/.DS_Store b/.DS_Store deleted file mode 100644 index 91bb0d25b83ddc5a1772130444774e37234f73eb..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 6148 zcmeHK!AiqG5S?wSrijpkf*yo`SHWtj6}*J1c=2RJ4=OdGp$*1eX;O12h1~Ur{1Ly$ zncb~YswY8<%)soMot>FY-iF;Q0EqUmy9-bQ00)(@RK?~Cp>fg~DOnGp&^2PnAV7^l z%|x?f9vPsu+k{gX;JQ8Gx_z#nL{9=|5P^ggMRNaXm1aqFi#)DM1@%8HGE9s zG^^L&M5$a^SX^?JoMq?M@2lL;f^3+!gTXcRE|f~bi5-NOag=vzt4B&^K`f(zPKdh^ zhTL4mva9m88p>{}bA2=5RGn(4wlNwt>dkF;uW>Nmc1OGQCU*8)t?{_(tZnTao_Fq( z2dSP7?*czjEh`o$@Pft2AF}r zV}SMt7nRVnSQyk>2R8KkNaGbk613?qLFiiaEEWcF1VxxsM3XA)6+@VG^t(3Bvsf53 z=^*sXSjWyR>DK7{Kl%RtKb^!qW`G&^R}6^Cv47mg zSF&g8%*)YP>!RMFl2BY>@FN8ceH3FX9mVUYTF~#3f#_K*459~xe*`oQ+%N;b%D_9C C*IhCI diff --git a/README.md b/README.md index 5ef221e..59e3632 100644 --- a/README.md +++ b/README.md @@ -25,3 +25,15 @@ There are seven main challenges: Please find more details and example Jupyter notebooks inside each challenge folder. Solutions are due on Monday, July 31st at 18:00 CET. Winners will receive certificates and prizes. + +🔧 Setup Instructions +1️⃣ Clone the repository +git clone https://github.com/ML4SCI/DeepLearnHackathon.git +cd DeepLearnHackathon +2️⃣ Create virtual environment (recommended) +python -m venv venv +source venv/bin/activate # On Windows use: venv\Scripts\activate +3️⃣ Install dependencies +pip install -r requirements.txt +4️⃣ Launch Jupyter Notebook +jupyter notebook \ No newline at end of file diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..e32f041 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,9 @@ +numpy +pandas +matplotlib +scikit-learn +jupyter +notebook +scipy +seaborn +tqdm \ No newline at end of file