Vinitha - Workshop-Bioinformatics
Vinitha - Workshop-Bioinformatics
Artificial intelligence:
AI is use in the magical wand to create the incredible things.Ai is like the
human intelligence and slove the problem Easily.
Popular AI :
ChatGpt :
Hologram;
⦁ 3D view for example the person can not speak in tamil the hologarm
ai is help into convert in to tamil language in that kind of person
image in 3D view can be display.
1
Python:
Data Structure:
split: split() function can be use in split the line in one by one.
Task:
Uploaded the data and plot the value between skin thickness,BMI and
Age
import numpy as np
2
import seaborn as sns
dataframe = pd.read_csv("/content/machine_learning/kaggle_diabetes.csv")
print(dataframe.head())
ax = sns.scatterplot(x="SkinThickness",
y="BMI",hue="Age",data=dataframe)
plt.show()
0 2 138 62 35 0 33.6
1 0 84 82 31 125 38.2
2 0 145 0 0 0 44.2
0 0.127 47 1
1 0.233 23 0
2 0.630 31 1
3 0.365 24 1
4 0.536 21 0
3
Neural network:
⦁ that means the defferent types of data you can insert it and its call
the input data it is a 1st layer of Neural network. and input layer
throw the data in to the second layer of hidden layer . the hidden layer
evaluate the data and pass into the output layer.
4
coding part:
import numpy
Y = dataset[:,8]
create model:
model = Sequential()
comile model:
model.compile(loss='binary_crossentropy', optimizer='adam',
metrics=['accuracy']) // loss function is use in iteration the data throw the
error until the error can be 0 they give the output for accuracy value.
5
Activated function:
A single neural will fire ,or activate when it thinks it has somthing worth
communicating to the other neurons connected to it.
Types:
Threshold:
A threshold value determines whether a neuron should be activated or not
activated in a binary step activation function. The activation function
compares the input value to a threshold value. If the input value is greater
than the threshold value, the neuron is activated.
Relu function:
Return Zero when the input value is less then zero and otherwise it returns
the same value that was passed into it that means X>0 they give the output
is x value X<0 they give the output is 0value .
sigmoid function:
return the out in binay value
6
7