Skip to content

Instantly share code, notes, and snippets.

View AashishNandakumar's full-sized avatar
:shipit:
Developing...

Aashish Nandakumar AashishNandakumar

:shipit:
Developing...
View GitHub Profile
@AashishNandakumar
AashishNandakumar / main.py
Created October 9, 2024 11:56
Python3 - Decorators and Current Time functions
def uppercase_converter(func):
def wrapper():
temp_res = func()
return temp_res.upper()
return wrapper
# @uppercase_converter
def greet():
return 'hello world'
@AashishNandakumar
AashishNandakumar / ai_projects.md
Created October 28, 2024 14:19
Beginner-friendly AI Projects

Project Ideas

  1. Spam Email Detector

Create a model that classifies emails as spam or not spam. Use machine learning algorithms like Naive Bayes or Support Vector Machines (SVM) to analyze features such as keywords and email formatting. This project helps you understand classification techniques and data preprocessing.

  1. Image Classification with ImageNet

Build a convolutional neural network (CNN) to classify images using the ImageNet dataset. This project will introduce you to deep learning frameworks like TensorFlow or PyTorch, and you'll learn about image preprocessing, model training, and evaluation.

  1. Personal Assistant Bot