Free Source Code, Capstone Projects & Programming Tutorials

Your trusted resource for downloadable source code, complete capstone projects with ER diagrams and Chapter 1-5 documentation, AI-ready capstones (RAG, ChatGPT, computer vision), and step-by-step tutorials in PHP, Python, Java, JavaScript, and more. Built by working developers, tested before publishing, and updated for 2026.

📅 Updated weekly | ✅ Code tested before publishing | 👨‍💻 Built by PIES IT Solutions developers

Modulenotfounderror: no module named k_diffusion

modulenotfounderror no module named k_diffusion

Are you dealing with modulenotfounderror: no module named k_diffusion error message while working in Python? Well, worry no more because, in this article, we will provide solutions for the no …

Read more

Modulenotfounderror no module named tensorboard [SOLVED]

modulenotfounderror no module named 'torchvision'

This article will provide solutions to fix Modulenotfounderror no module named tensorboard, what causes it, and a brief discussion about this error. Modulenotfounderror no module named tensorboard error can be …

Read more

Modulenotfounderror: no module named ‘oauth2client’

modulenotfounderror no module named 'oauth2client'

Experiencing the modulenotfounderror: no module named ‘oauth2client’ error message in Python is normal, and it has a simple and easy solution. This error usually occurs when the required library cannot …

Read more

Modulenotfounderror: no module named ‘pyodbc’

Modulenotfounderror: no module named 'pyodbc' [SOLVED]

This article will show you how to solve the error modulenotfounderror no module named pyodbc in Python. Encountering errors in Python is not new to developers, so if you’re new …

Read more

Modulenotfounderror no module named pymysql [SOLVED]

modulenotfounderror no module named pymysql

The Modulenotfounderror no module named PyMySQL is a common error most python programmers faced either beginner or developer users. In this article, we will provide solutions to fix this error …

Read more

Modulenotfounderror: no module named ‘flask.ext’

Modulenotfounderror: no module named 'flask.ext' [SOLVED]

Encountering errors like modulenotfounderror: no module named ‘flask.ext’ in Python is common. This error occurs when you import a Flask extension that’s been deleted from the most recent Flask release. …

Read more

Modulenotfounderror: no module named ‘mlxtend’

modulenotfounderror no module named 'mlxtend'

The solution for the modulenotfounderror: no module named ‘mlxtend’ error message is very simple and easy. In this article, we will discus what this error is all about, its causes, …

Read more

What is Python Uppercase Method? How To Use It?

Python Uppercase

Python language has lots of built-in methods that you can explore and apply to your program. One of these built-in methods is the uppercase in python (upper()) method. What is …

Read more

Easy Ways to Learn Python Max Int

Python Max Int

This article will show you the easiest ways to learn Python max int and how to obtain the maximum integer value in various Python versions. In Python 2, there’s a …

Read more

Modulenotfounderror: no module named ‘python-dateutil’

modulenotfounderror no module named 'dateutil'

The modulenotfounderror: no module named dateutil occurs because the python interpreter cannot find the installed dateutil module in the path environment. Furthermore, the error modulenotfounderror no module named dateutil will …

Read more

Modulenotfounderror: no module named urllib3 [Solved]

modulenotfounderror no module named urllib3

Are you encountering Modulenotfounderror: no module named urllib3 error? In this article, we will provide solutions to fix this error. Apart from that, we will find the causes of this …

Read more

Frequently Asked Questions

Are these deep learning projects free for capstone and thesis use?
Yes. All deep learning projects on this hub are free to download, modify, and submit. No attribution required for academic use. Most are MIT-licensed or include source-code packs with sample datasets and pretrained model weights.
What deep learning frameworks do I need installed?
Most projects use OpenCV (cv2) for video capture and image preprocessing, plus one of: TensorFlow / Keras (Caffe model loading via cv2.dnn, custom CNN training), PyTorch (research-style models, YOLO v5+, transformers), or MediaPipe (Google's optimized face/hand/pose detectors). Install with pip install opencv-python tensorflow keras torch torchvision mediapipe numpy. Python 3.10, 3.11, or 3.12 recommended (avoid 3.13 until all wheels catch up).
Do I need a GPU to run these deep learning projects?
For inference (running a pretrained model on your webcam): no, CPU runs at 15-30 FPS for most computer-vision tasks. For training a custom model on your own dataset: GPU strongly recommended (CPU works but is slow). Free GPU options: Google Colab Free (12-hour sessions, sufficient for most BSIT capstones), Kaggle Notebooks Free (30-hour weekly quota), Paperspace Free tier. No need to buy a $1000+ GPU just for a capstone defense.
Deep learning vs classical machine learning, which should I pick for my capstone?
Pick deep learning when your inputs are unstructured (images, audio, video, text) and you have 10,000+ training samples. Pick classical ML (random forest, SVM, logistic regression) for tabular data, small datasets (under 1,000 rows), or when you need explainable predictions for the panel. Many capstones combine both: deep learning for feature extraction (face embedding via FaceNet) plus classical ML on top (SVM classifier for identity matching).
Why is my OpenCV deep learning model running at 2 FPS?
Three usual causes: (1) Resolution too high, resize frames to 640x480 or 320x240 before inference. (2) Wrong cv2.dnn backend, set net.setPreferableBackend(cv2.dnn.DNN_BACKEND_OPENCV) and net.setPreferableTarget(cv2.dnn.DNN_TARGET_CPU). (3) Heavy model on weak hardware, swap YOLO v5 for MobileNet-SSD or use Haar cascades for simple face/eye detection. Also close other applications and disable laptop battery-save throttling.
Can I extend a single OpenCV demo into a full BSIT capstone?
Yes, and you should. A standalone webcam demo (face detection alone) is too narrow for capstone scope. Wrap it in a real system: face recognition becomes Real-Time Attendance System with PHP/MySQL dashboard, object detection becomes Smart CCTV Alert System with email notifications, drowsiness detection becomes Driver Monitoring System for fleet vehicles. Add user accounts, database logging, simple admin UI, and write Chapters 1-5 manuscript to satisfy panel requirements.
How often is this deep learning projects list updated?
New deep learning projects are added periodically as we receive student requests and new models become OpenCV-compatible. Last refreshed June 2026 with 19 vision-focused projects covering face recognition, object detection, traffic-sign classification, OCR, and more.