Welcome to the official repository for the Data Science Department at Unde Academy! This repository contains:
- Lecture Notes & Resources: Organized by topics in
class_notes/ - Assignments & Templates: Available under
assignments/ - Submission System: Submit assignments in
submissions/ - Capstone Projects: Industry-standard projects in
projects/
📂 data_science_ml_ai
┣ 📂 class_notes/ # Lecture notes organized by topics
┣ 📂 assignments/
┃ ┣ 📂 group_1/
┃ ┃ ┣ 📜 assignment_1.ipynb
┃ ┃ ┣ 📜 assignment_2.ipynb
┃ ┣ 📂 group_2/
┃ ┃ ┣ 📜 assignment_1.ipynb
┃ ┃ ┣ 📜 assignment_2.ipynb
┃ ┣ 📂 templates/ # Assignment templates
┃ ┃ ┣ 📜 assignment_template.ipynb
┣ 📂 submissions/
┃ ┣ 📂 assignment_1/ # Folder for assignment submissions
┣ 📂 projects/ # Advanced capstone projects
┣ 📜 README.md # Repository overview and guidelines
┣ 📜 instructions.md # Submission guidelines
┣ 📜 grading_criteria.md # Rubric for assignment evaluation
- Navigate to the
class_notes/folder. - Select the topic you are interested in.
- View or download the
.ipynbfile or other files directly through GitHub.
- Clone the repository:
git clone https://github.com/Unde-Academy/data_science_ml_ai.git
cd data_science_ml_aigit checkout -b student_name-assignment1cd assignments/group_1
mv ~/Downloads/assignment_1.ipynb .
git add .
git commit -m "Completed assignment 1"
git push origin student_name-assignment1
Issue | Solution
------------------------------------------------------------------
Merge Conflicts | Run git pull origin main before pushing
Push Rejected | Ensure students use branches instead of main
Forgot to Commit | Use git status, git add ., git commit -m "message"
Wrong File Location |Ensure files are placed inside assignments/student_name/