If you a novelist and have a habit of reading the books regarding mixture of religion. This below book is all about how the man turned to Lord shiva. What are the hurdles he had passed through are narrated very well. The story starts from blue man. Novel link
This video is all about how to design the relu layer in the
MATLAB.
The Relu layer is used to make the decision true or false
and propagate the answer to the next layer or to the output layer.
The Relu layer is the activation function and relu is the
non-linear activation function.
In next video shall discuss about the other non-linear
activation function and linear activation function.
The Relu layer is used extensively in the image processing
applications and they are most commonly used activation function for AlexNet,
CNN.
The Alexnet is fully configurable network based on the
applications. The MATLAB is taken to implement the RELU layer.
The deeplearning, machine learning can be the reason for 4th
industrial revolution in the future days such as driverless cars reduces the
accidents, traffic jams, can replace humans for precise operations and still
more.
This video is all about how to make use of the alexnet for detecting the 1000 different object. Have discussed the success and failure of the applied method with examples.
The dataset is 50000 different images. For training images have reserved 60% of the dataset and next 40% is divided into testing and validation equally. To understand what is testing and validation watch the video in link https://youtu.be/upstQZm8LR4
The Alexnet is fully configurable network based on the applications. The instance of it shown by taking the help of a tool called as MATLAB.
The deeplearning, machine learning can be the reason for 4th industrial revolution in the future days such as driverless cars reduces the accidents, traffic jams, can replace humans for precise operations and still more.
How to use confidential mode in Gmail mobile application.
To resend the mail the gmail if the typo mistake has happened. The undo time can be set in between 5 and 30 seconds. This is the buffer-able time given for the user to correct the mail and resend the mail. The access to viewing the attachment can be decided by the sender by setting the expire date it can be a week, a day or one month. After the specified time the content inside the attachment can't be viewed.
A good feature added to the gmail.
The best web extension for you-tuber
https://www.tubebuddy.com/programmerartist
Stay tunes for the more videos, the channel link is
http://www.youtube.com/c/amoghabandrikalli
Find me on facebook https://www.facebook.com/amogha.b14
My facebook page: https://www.facebook.com/amoghabandrikalli/?modal=admin_todo_tour
Last video is on what is over and underfitting in machine learning and its solution .
A google i/o keynote with demo example watch the full video on
https://goo.gl/nfVgRj
Watch this you will surely enjoy the video from above link. The google has making life easier. The AI has reached another heights. The deep learning, self driving, match the style, Google lens ( one of my favorite awesome update).
The best web extension for you-tuber
https://www.tubebuddy.com/programmerartist
Stay tunes for the more videos, the channel link is
http://www.youtube.com/c/amoghabandrikalli
Find me on facebook https://www.facebook.com/amogha.b14
My facebook page: https://www.facebook.com/amoghabandrikalli/?modal=admin_todo_tour
Last video is on Reset circuit for lpc176x ARM controller:
Reset circuit of the CORTEX-M3 and same for all series of LPC176x. It covers the which wake up interrupt, reset sources, logic gates, flash accelerators, how they combine with each other to perform the reset operation. Seems interesting.
Watch this. Keep subscribing and keep supporting....!!!!
How to identify company is fake or genuine. How to get the internship which is related to your branch. Tips to select/search internship. Do watch keep subscribing and keep watching. VTU internship is made mandatory check this video before joining as intern to any company.
According to mathematics,
the maximum checks are in the range 2 to number/2 with a increment of 1 for
every check –
LOGIC
According to logic,
Step 1: Declare the three variables, use one variable as flag,
another two to carry out ‘for’ loop
Step 2: Write a for loop with conditions, start loop from 2 and
execute till number/2 with a increment of 1 (I = 2; I<=number/2; I++), set
flag equals to 0.
Step 3: Find the remainder of a number starting from 2 and check for
other number till number/2
Example: if the checking number is
1000 the starting number is 2 to 500(number/2)
If remainder is equal to zero set the flag = 1 and
terminate the loop
Repeat the step 3 till the loop
count reaches the number/2.
"Programming is the art and it should be practiced everyday to become an artist"
Before starting programming in any language such as JAVA, C, C#, MATLAB, Python etc, there is a need to eat and digest the below points.
1. Looping 2. Logic of a Program 3. Last but not least syntax of a programming language. 1. Looping:
This is critical and need to learn and digest any one of the looping (while, do-while or for).
The need of looping is essential because usually in the real time applications exact number of times the work need to be carried out during this cases the looping plays a vital role. Some of the examples are below
If there is a need to run loop for 10 times, can choose any of the looping system
For example shall take for loop
In C : for (i=1; i<=10;i++), for(i=0;i<10;i++)
In Matlab :
for i = 1:1:10
end
Like above there can be 'N' ways to implement the loop in different language with different looping types.
While writing the looping take care about the forcing the value to variable as '1' or '0' inside the loop as it leads to wrong answers. Lets consider the example to calculate sum to 10 numbers
if variable which holds the result is forced to 0 inside looping leads to wrong answers
Ex: Sum is the variable used to hold the result
for (i=1;i<=10;i++)
{
sum = 0;
sum = i + sum;
}
the original answer for 1+2+3+4+5+6+7+8+9+10 = 55 (in decimal) but for the above code the answer is 10 because of forcing the variable sum to 0.
Instead the result holding variable should be assigned outside the looping
Ex:
sum = 0;
for(i=1;i<=10;i++) // loops for ten times
{
sum = i + sum; // for every execution the sum is updated based on the integer value i in the loop.
} for more information visit the link to get more knowledge on loopinghttps://www.youtube.com/watch?v=LhXfw3lM0oo
2. Logic of a program
A Essential part of the programmer where the developer need to understand the problem statement and prepare a paper work to come up with a logic. Only a experts can code onscreen by keeping logic in mind. Beginners do make a paper work and later start coding or else more often end with errors as out brain won't support it.
If the logic is known can code the same in any language (C, C++, Java anything). More often in the interview, companies asks the basics no one ask to solve a complex problem a simple fibonacci series, tribonacci series, binary search etc. While attending the interviews do brush up the logic of small programs.
Last point but not least. 3. Syntax of the programming language
This is the least importance the syntax varies from one programming language to another, before coding with any language learn the compiler rules and syntax.
This is easy within two to three days we can learn the syntax of any language.
For example: refer the first point in this blog which explains the syntax variation for writing the "for loop" in MATLAB and C.
Once the syntax is known can write a program.
Practice is the key if tool is not used for many days again people end up with syntax errors. Example if the person was coding in MATLAB switched to C coder after five months if they start using MATLAB, the usage of C language influences and makes the syntax errors while writing the MATLAB codes.
Please do subscribe to the below the link for the channel is provide,
The emerging field in the field of technology and communication are as follows 1. IoT 2. Machine learning.
IoT- It stands for Internet of Things
It actually means that the every nodes are connected to the internet and those can be controlled through internet. The examples of nodes can be computer, smart phone, house gadgets, traffic light, security system of home etc. All these are named as the nodes. As the world is moving towards higher generations of speed such as 5G in the future days the IoT is the fast growing job providing field. Machine Learning
It is the another fast growing field, where the machines should analyze the environment and should start recognizing the things. It is like teaching a child, a step by step process. The only difficulty in this field is the machines understands only a numbers all the real world data should be fed as numbers and recognition should happen based on the numbers.
In this field we have two stages
1. Training: in this stage the machines starts understanding the environment through the numbers technically it is called as feature extraction phase where features are the deciding factors.Normally thousands of samples(can be image, audio or anything) are taken and features are extracted.
2. Testing: once the features are extracted and stored in the data base the training phase is completed and the testing phase starts. In testing the images are provided based on the previous experience the machine will provide the judgement whether the image/audio belongs to the class(group) or not.