
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
DIFFERENCE BETWEEN CNN AND RNN?
ANS-:
CNN | RNN |
---|---|
Solve image recognition problems with very high accuracy. | It gives less accuracy for complex problems. |
CNN-:
- It automatically detected essential features without human help.
- Weight sharing is done with this.
- But CNN don’t encode the position and orientation of the object.
- It lacks the ability of spatially invariant to – input data.
- Huge (training) data in order to work efficiently.
RNN-:
- RNN stores long time information.
- RNN can also used with convolution layers to extend effective pixel neighborhood.
- But it has exploding as well as (gradient) vanishing.
- RNN code training is very difficult.
- In case of activation functions like ‘tanh’ and ‘relu’, it can’t process the huge long sequence.
CNN
– This type of model considers variation of multilayer perceptrons and contains one or more convolution layers that can be either entirely connected or pooled.
– These convolution layers create feature maps that record a region of image that is ultimately broken into rectangles and sent for nonlinear processing.

RNN
– RNN models save the output of processing nodes and feed the result back into model and hence it don’t pass the information in one direction, so this is how, model set to learn to predict the outcome of layer.
– Each node in RNN model acts as memory cell, continuing the computation and implementation of operation.
– If network prediction will be incorrect then system self-learns and continues the working toward the correct prediction during back propagation.

CNN
- CNN neural network is feed forward, it considers many applications in the sector of image recognition as well as object recognition whereas RNN feedback is fundamentally based, and in RNN the output is also dependent on previous layer.
- CNN includes 4 layers i.e. activation layer, convolution layer, fully connected layer and pooling layer. These layers extract the features and find the patterns of input image.
- CNN mostly support images.
- CNN has finite input set.

RNN
- RNN layer feedback is based on previous layer also. RNN considers input/hidden as well as output layer. Looping is done by hidden layer and it has memory to store previous results.
- RNN support the sequential data.
- RNN don’t have finite set of input, it considers arbitrary length of input.
- RNN find good with time series information.

Apply now for Advanced Python Training Course