
Quick Contact
Python Tutorial
- What is Python?
- How to Install Python?
- Python Variables and Operators
- Python Loops
- Python Functions
- Python Files
- Python Errors and Exceptions
- Python Packages
- Python Classes and Objects
- Python Strings
- PostgreSQL Data Types
- Python Generators and Decorators
- Python Dictionary
- Python Date and Time
- Python List and Tuples
- Python Multithreading and Synchronization
- Python Modules
- What is Python bytecode?
- Python Regular Expressions
Python Panda Tutorial
- Python Pandas Tutorial
- Python Pandas Features
- Advantages and Disadvantages of Python Pandas
- Pandas Library In Python
- Pandas Series To Frame
- Python Dataframeaggregate and Assign
- Pandas Dataframe Describe
- Pandas Dataframe Mean
- Pandas Hist
- Pandas Dataframe Sum
- How to convert Pandas DataFrame to Numpy array
- Pandas Concatenation
Python Selenium
- Selenium Basics
- Selenium with Python Introduction and Installation
- Navigating links using get method Selenium Python
- Locating Single Elements in Selenium Python
- Locating Multiple elements in Selenium Python
Python Flask Tutorial
Python Django
- How to Install Django and Set Up a Virtual Environment in 6 Steps
- Django MTV Architecture
- Django Models
- Django Views
- Django Templates
- Django Template Language
- Django Project Layout
- Django Admin Interface
- Django Database
- Django URLs and URLConf
- Django Redirects
- Django Cookies and Cookies Handling
- Django Caching
- Types of Caching in Django
- Django Sessions
- Django Forms Handling & Validation
- Django Exceptions & Error-handling
- Django Forms Validation
- Django Redirects
- Django Admin Interface
- Django Bootstrap
- Ajax in Django
- Django Migrations and Database Connectivity
- Django Web Hosting and IDE
- Django Admin Customization
- What is CRUD?
- Django ORM
- Django Request-Response Cycle
- Django ORM
- Making a basic_api with DRF
- Django Logging
- Django Applications
- Difference between Flask vs Django
- Difference between Django vs PHP
Numpy
- Numpy Introduction
- NumPy– Environment Setup
- NumPy - Data Types
- NumPy–Functions
- NumPy Histogram
- numPy.where
- numpy.sort
- NumPyfloor
- Matrix in NumPy
- NumPy Arrays
- NumPy Array Functions
- Matrix Multiplication in NumPy
- NumPy Matrix Transpose
- NumPy Array Append
- NumPy empty array
- NumPy Linear Algebra
- numpy.diff()
- numpy.unique()
- numpy.dot()
- numpy.mean()
- Numpy.argsort()
- numpy.pad()
- NumPyvstack
- NumPy sum
- NumPy Normal Distribution
- NumPylogspace()
- NumPy correlation
- Why we learn and use Numpy?
Tensorflow
- Introduction To Tensorflow
- INTRODUCTION TO DEEP LEARNING
- EXPLAIN NEURAL NETWORK?
- CONVOLUTIONAL AND RECURRENT NEURAL NETWORK
- INTRODUCTION TO TENSORFLOW
- INSTALLATION OF TENSORFLOW
- TENSORBOARD VISUALIZATION
- Linear regression in tensorflow
- Word Embedding
- Difference between CNN And RNN
- Explain Keras
- Program elements in tensorflow
- Recurrent Neural Network
- Tensorflow Object Detection
- EXPLAIN MULTILAYER PERCEPTRON
- GRADIENT DESCENT OPTIMIZATION
Interview Questions & Answers
EXPLAIN MULTILAYER PERCEPTRON
Let’s understand multilayer perceptron using example-:
– As tensorflow is an open source software library by Google for numerical computation using data flow graph.
– Basic understanding of python should be good if you will use it for MLP.
Now make a multilayer perceptron.
Multilayer perceptron is a feed forward artificial neural network model that map set of input data to set of appropriate output MLP. As MLP contains multi layer of nodes in a directed graph. In this layer are connected.
– Now start with coding. Go to prompt and start with importing libraries.
>import tensorflow as tf
> import numpy as np
>and further go with data as-:


– As it’s going to be three layer neural networks and there is one hidden layer, first layer has two modes, and the second layer is hidden layer, third layer is the output layer that has only one node as in above code. It’s going to set of weight i.e. W1 and W2 with set of bias.
– Here set of weight is going to use to connect two layers of neurons. Grid W1 is to connect input layer to hidden layer whereas the W2 is used to connect hidden layer to output layer.
– Another you have to do is create the placeholder. Placeholder is a variable to which you are going to assign value later.


– Now do the calculations with the input and set of weight and bias as-:

Now calculate the cost and create optimizer function using gradient function as it improves to minimize the cost and improve output.
And then initialize the variables and start tensorflow and start creating loop and after calculate the answer -:

Now test the data as-:

Now run this in the terminal as-:

From output you can see that cost is improving after every thousand creation and in end you can see the accuracy of 1.0, so make some changes in it as multiply by 100 to get proper answer.

Now check it again.

So output tells that cost is improving and accuracy is 100%, which conclude that increase in the number of filtration, then cost will decrease and accuracy will increase with better output.