Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added user Pratham A Kadekar #11660

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion CONTRIBUTORS.md
Original file line number Diff line number Diff line change
Expand Up @@ -2426,4 +2426,9 @@ Noida
#### Name: [Ítalo Epifânio](https://github.com/itepifanio)
- Place: Natal, Brazil
- Bio: Web developer PHP and Python
- Github: [Ítalo Epifânio](https://github.com/itepifanio)
- Github: [Ítalo Epifânio](https://github.com/itepifanio)

#### Name: [Pratham A Kadekar](https://github.com/pratham-ak2004)
- Place: Udupi, Karnataka, India
- Bio: A Machine Learning student at NMAM Institute of Technology aspiring to be a web developer
- Github: [pratham-ak2004](https://github.com/pratham-ak2004)
30 changes: 30 additions & 0 deletions profiles/Pratham_A_Kadekar.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# Pratham A Kadekar

### Location

From Udupi, Karnataka, India

### Academics

Studying B.Tech in Artificial Intelligence and Machine Learning at Nitte University, karkala taluk, Manglore

### Interests

- computer are my intrest
- programming in c++
- curious on machine learning using tensorflow
- love to provide programming solutions to day to day problems

### Development

- Developing helper notebook for clean tensorflow installation on windows

### Projects

- [SMS Spam Classifier](https://github.com/pratham-ak2004/sms-spam-classifier) A python jupyter notebook which will train machine learning models to detect Spam messages.The project is hosted at streamlit app on the web.
- [PDF Reader](https://github.com/pratham-ak2004/PDF-Reader) A python notebook which is made to extract text from a pdf file , convert it into audio file and read the same to the user. it includes functionalities like play/pause , read speed , voice - male/female and file (book) selection.
- [Unique Team Generator](https://github.com/pratham-ak2004/Unique-Team-Generator) A java project which is made to generate unique teams using number starting from 1.

### Profile Link

[pratham-ak2004](https://github.com/pratham-ak2004)
18 changes: 18 additions & 0 deletions scripts/Hello_World_pratham-ak2004.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
// LANGUAGE: c++
// ENV: g++
// AUTHOR: Pratham A Kadekar
// GITHUB: https://github.com/pratham-ak2004

#include <iostream>
#include <vector>

using namespace std;

int main()
{
vector<char>name = {'H','e','l','l','o',' ','W','o','r','l','d'};
for(auto ch : name){
std::cout << ch;
}
return 0;
}