0% found this document useful (0 votes)
3 views78 pages

AI Project File

The document outlines an Artificial Intelligence project by Jovin Oommen Binu, detailing various topics and certifications related to AI, including Python programming, machine learning algorithms, and data literacy. It also includes a section on job roles and salaries in AI from major companies like Google and Microsoft. Additionally, there is a JavaScript code snippet for a Teachable Machine model that predicts image classifications.

Uploaded by

koroye9676
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
3 views78 pages

AI Project File

The document outlines an Artificial Intelligence project by Jovin Oommen Binu, detailing various topics and certifications related to AI, including Python programming, machine learning algorithms, and data literacy. It also includes a section on job roles and salaries in AI from major companies like Google and Microsoft. Additionally, there is a JavaScript code snippet for a Teachable Machine model that predicts image classifications.

Uploaded by

koroye9676
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 78

2024 - 25

KINGDOM OF BAHRAIN

Artificial Intelligence
Project
Made By
Name: Jovin Oommen Binu
Gr.no: 38474
Class: XI - K
Index
SR.NO Topic Date Signatue

Certificate's From IBM/CISCO & Sep 13th


1 2024
INTEL

Google's Teachable Machine's Sep 25th


2
(Cats & Dogs) 2024

Unlock your future in Ai (Job Oct 08th


3 2024
Roles's)

Sep 4th
4 Python Programming
2024

Data Literacy - Data Collection to Dec 13th


5
Data Anaysis 2024

Machine Learning Algorithm Nov 05th


6
Python Programs 2024

Jan 4th
7 IBM AI Ethics Board (PPT)
2025

Feb 9th
8 Applications Of NLP (PPT)
2025
Certification's
from
Google's
Teachable Machine
Google Teachable Machine
TEST 1

TEST 2
Transcript of Teachable Machine
JAVA SCRIPT

<div>Teachable Machine Image Model</div>


<button onclick="init()">Start</button>
<div id="webcam-container"></div>
<div id="label-container"></div>
<script>
const URL = "./my_model/";
let m, w, lc, mp;
async function init() {
m = await tmImage.load(URL + "model.json", URL +
"metadata.json");
mp = m.getTotalClasses();
w = new tmImage.Webcam(200, 200, true);
await w.setup(); await w.play();
document.getElementById("webcam-
container").appendChild(w.canvas);
lc = document.getElementById("label-container");
for (let i = 0; i < mp; i++)
lc.appendChild(document.createElement("div"));
window.requestAnimationFrame(l);
}
async function l() {
w.update(); await p(); window.requestAnimationFrame(l);
}
async function p() {
const prediction = await m.predict(w.canvas);
for (let i = 0; i < mp; i++) lc.childNodes[i].innerHTML =
`${prediction[i].className}:
${prediction[i].probability.toFixed(2)}`;
}
</script>
Unlock yourFuture in

Ai jobs
Unlock yourFuture in Ai jobs

Annual
SR.NO Company Job Roles Salaries
(USD)

AI/ML $181,900 -
1 Google Researcher $280,900

AI $161,100 -
2 Meta Platforms, Inc.
Researcher $256,100

$163,300 -
3 NVIDIA AI Architect
$263,300

AI Research $153,400 -
4 Microsoft
Scientist $253,400

Principal ML $184,800 -
5 Amazon
Scientist $294,800

AI Research $146,600 -
6 IBM
Scientist $236,600

AI Software $134,400 -
7 Tesla
Engineer $224,400
Python
Programming
Python Programming
INPUT

OUTPUT
Python Programming
INPUT

OUTPUT
Python Programming
INPUT

OUTPUT
Python Programming
INPUT

OUTPUT
Python Programming
INPUT

OUTPUT
Python Programming
INPUT

OUTPUT
Python Programming
INPUT

OUTPUT
Python Programming
INPUT

OUTPUT
Python Programming
INPUT

OUTPUT
Python Programming
INPUT

OUTPUT
Python Programming
INPUT

OUTPUT
Python Programming

OUTPUT
INPUT

______________________________
Python Programming
INPUT

OUTPUT
Python Programming
CSV FILE OF PROGRAM 13
Python Programming
INPUT

OUTPUT
Python Programming
INPUT

OUTPUT
Python Programming
INPUT

OUTPUT
Data
Literacy
Data Literacy
INPUT

OUTPUT
Data Literacy
INPUT

OUTPUT
Data Literacy
INPUT

OUTPUT
Data Literacy
INPUT

OUTPUT
Data Literacy
INPUT

OUTPUT
Data Literacy
INPUT

OUTPUT
MachineLearning
Algorithm
Python Programs
MachineLearning Algorithm
Python Programs
LINEAR REGRESSION: FINDING
THE LINE OF BEST FIT
INPUT

OUTPUT
MachineLearning Algorithm
Python Programs
CALCULATING SLOPE

INPUT OUTPUT
MachineLearning Algorithm
Python Programs
CALCULATING INTERCEPT

INPUT OUTPUT
MachineLearning Algorithm
Python Programs
CALCULATING PEARSON'S
CORRELATION COEFFICIENT
INPUT OUTPUT

You might also like