Coder Social home page Coder Social logo

Hi there, I'm Nandhini S. 👋

nandhini-1402

nandhini-1402

About Me

I'm a final year Bachelor of Technology student at M Kumarasamy College of Engineering, Karur, from Namakkal. I'm passionate about Machine Learning and have experience working with various machine learning models and technologies. I also have a solid foundation in Java.

Education

  • Bachelor of Technology (B.Tech)

    • M Kumarasamy College of Engineering, Karur
    • Expected Graduation: 2025
  • Secondary Education

    • The Modern Academy Matric Higher Secondary School, Namakkal

Experience

  • Machine Learning Intern at Bharat Intern

    • Directed project planning and execution, developed machine learning models, and delivered data-driven solutions.
  • Machine Learning Intern at TechnoHacks Edu Tech

    • Contributed to state-of-the-art machine learning models and gained practical experience in real-world applications.
  • Metafluencer for Altworld

    • Enhanced skills in Digital Marketing, created 3D models, executed marketing strategies, and promoted innovative solutions.

Projects

  • Health Prediction Web App

    • Developed a web app to predict various health conditions using machine learning. Selected in Techgium 7th Edition by L&T Technologies and presented at Bannari Amman Institute of Technology.
  • Disease Prediction Models

    • Worked on predicting heart disease, Parkinson’s disease, lung cancer, diabetes, and breast cancer. Selected in MSME 2.0 and MSME 3.0 Hackathons.

Certifications

  • Microsoft Certified: Azure AI Fundamentals

Skills

  • Machine Learning
  • Java
  • Digital Marketing

Goals

  • Short-Term: Secure placement in the IT sector.
  • Long-Term: Achieve financial independence.

Connect with Me

Contact

Feel free to reach out to me at email-id.

nandhini-1402

 nandhini-1402

nandhini-1402

Stay Happy, Stay Motivated


Thank you for visiting my GitHub profile! 🚀

Nandhini S's Projects

927621bal031 icon 927621bal031

The Average Calculator Microservice is a REST API-based application that fetches and stores numbers from a test server, calculates their average within a defined window size, and responds to requests with current and previous states of stored numbers along with the average.

badge icon badge

"Badge: Visual indicator added to README files, displaying project status or information like build passing, code coverage, or version. Enhances project visibility and credibility."

bank_transfer icon bank_transfer

This project implements a basic banking system allowing users to sign up with unique credentials, transfer money securely, and manage individual accounts. Built with React.js, Node.js, and MySQL, it offers a practical demonstration of full-stack web development concepts.

bannerimg icon bannerimg

"Banner Image: Eye-catching visual element placed at the top of README file to represent project theme, showcase branding, or provide context. Captures attention, adds professionalism, and improves overall aesthetics of repository landing page."

basic-problems icon basic-problems

Python Basics: Master fundamental concepts like data types, loops, conditionals, and functions. Solve introductory challenges covering arithmetic, strings, lists, and dictionaries. Lay a strong foundation for your Python journey.

cgpa-calculator icon cgpa-calculator

"This CGPA Calculator is a simple tool that allows students to calculate their CGPA easily. Enter the number of semesters and the SGPA for each one, and the calculator provides the CGPA without rounding off. Built with HTML, CSS, and JavaScript, it offers a user-friendly interface for quick academic tracking."

diamond-pattern icon diamond-pattern

Diamond Pattern: Formed by rows of characters arranged to resemble a diamond. Rows incrementally increase and decrease in character count, creating symmetry. Common in programming exercises, implemented using loops and conditionals in languages like Python, Java, etc.

distinct-numbers-in-an-array icon distinct-numbers-in-an-array

Given an array nums of positive integers of size N. Find all distinct digits present in nums. Example 1: Input: nums = [131, 11, 48] Output: 1 3 4 8 Explanation: 1, 3, 4, and 8 are only distinct digits that can be extracted from the numbers of the array.

even-or-odd-java icon even-or-odd-java

Given an integer input num, the objective is to write a code to Check Whether a Number is Even or Odd in Java Language. To do so we check if the number is divisible by 2 or not, it’s Even if it’s divisible otherwise Odd.

files-dataset icon files-dataset

Repository containing datasets for various machine learning projects, curated and organized for easy access. Explore diverse datasets spanning medical disease domains, suitable for experimentation and analysis in data science projects. Ideal for enthusiasts and professionals alike.

greatest-number-among-three-numbers--java icon greatest-number-among-three-numbers--java

Given three integers num1, num2 and num3 as inputs. The objective is to write a code to Find the Greatest of the Three Numbers in Java Language. To do so we’ll check the numbers with each other and print the largest of them all.

greatest-of-two-numbers-java icon greatest-of-two-numbers-java

Given two integer inputs N1 and N2, the objective is to write a code to Find the Greatest of the Two Numbers in Java. In order to do so we’ll compare the numbers using if-else statements.

house-price-prediction icon house-price-prediction

Predicting house prices accurately requires considering factors like location, size, amenities, market trends, and condition. It's a complex process influenced by economic indicators and local dynamics. Accurate predictions demand comprehensive analysis and may vary greatly depending on specific circumstances.

iris-flower-classification icon iris-flower-classification

"Iris Flower Classification: A classic machine learning problem where features like sepal and petal dimensions classify iris species. Commonly tackled using algorithms like k-Nearest Neighbors or Support Vector Machines."

leap-year-or-not-java icon leap-year-or-not-java

We will write Leap Year Program in Java. Given an integer input “year” the objective is to check if the given year is a leap year or not using the conditions for a leap year. Therefore, keeping them in mind we write a code to Check Whether or Not the Year is a Leap Year in Java Language.

loginpage icon loginpage

"Login Page: Secure gateway for users to access accounts or systems. Requires authentication, typically via username/email and password. Ensures privacy and access control for protected resources. Essential for web applications, platforms, and services."

multiple-disease icon multiple-disease

Comprehensive dataset repository facilitating multiple disease prediction research. Curated datasets cover various medical conditions, enabling robust analysis and model development for predictive healthcare applications. A valuable resource for advancing disease diagnosis and treatment strategies

multiple-disease-prediction icon multiple-disease-prediction

"Comprehensive dataset repository facilitating the prediction of multiple diseases. Curated datasets covering various medical domains for machine learning projects. Empowering research and development in healthcare analytics for improved diagnosis and treatment outcomes."

multispectral-wellness-predictor icon multispectral-wellness-predictor

The objective of employing machine learning for this project is to enhance healthcare by leveraging data-driven insights. This includes developing accurate predictive models that can identify disease risk factors and patterns early, enabling proactive interventions and personalized treatment strategies.

nandhini-1402 icon nandhini-1402

Welcome to my GitHub repository! Explore my projects, contributions, and insights. Dive into code, collaborate, and innovate. Let's build together. 💻🚀

palindrome-or-not-number-java icon palindrome-or-not-number-java

Given an integer input as the number, the objective is to check whether or not the given number is a palindrome. To do so, we’ll first reverse the string input using loops and recursion and check if it matches the original number. Example Input : 121 Output : Palindrome

positive-or-negative-java icon positive-or-negative-java

Given an integer num input the objective is to write a code to Check if a Given Number is Positive or Negative in Java Language.

prime-number-or-not-java icon prime-number-or-not-java

Given an integer input greater than 0. The objective is to Check Whether or Not the Number is a Prime. To do so we’ll write a code to Check Whether a Given Number is Prime or Not in Java that checks for the factors of the Number besides 1 and the number itself.

prime-number-within-a-given-range-java icon prime-number-within-a-given-range-java

Given an integer input the objective is to check whether or not there are any Prime Numbers in the given interval or range. Therefore, we write a code to Find the Prime Numbers in a Given Interval in Java Language.

prodigy_ml_01 icon prodigy_ml_01

Implement a linear regression model to predict the prices of houses based on their square footage and no of bed rooms and bathrooms

prodigy_ml_02 icon prodigy_ml_02

This code performs customer segmentation using RFM (Recency, Frequency, Monetary) analysis. It creates an RFM dataframe, determines optimal clusters with k-means, and orders clusters from worst to best. Customers are segmented into high, mid, and low value groups and visualized in a 3D plot for better marketing strategies.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.