You are on page 1of 32

Function [a,b,c] = ref_generation(x,ma,shift_k) a = (ma*(sin((x)+shift_k))); b = (ma*(sin((x)

+shift_k-(2*pi/3)))); c = (ma*(sin((x)+shift_k+(2*pi/3)))); % ma is modulation index % x is wt rad/s


% shift_k is phase shift angle rad
Cfmax=(0.05*Pmin)/(2*pi*f*U^2); %5.5 Micro Farads

Lf=(0.1*U^2)/(2*pi*f*Pmin); %9.2mH

RLf=Lf*100; %resistance of inductor

the most widely used metrics and tools to assess a classification model are:
1 point

Confusion matrix
Cost-sensitive accuracy
Area under the ROC curve
All of the above - answer

Which of the following is a categorical outcome (Machine Learning


Training)?
1 point

RMSE
RSquared
Accuracy
All of the Mentioned

Which of the following is characteristic of the best machine learning method?


1 point

Fast
Accuracy
Scalable
All of the Mentioned

To segment email into the spam or normal category, which type of learning
model you will choose
1 point

Unsupervised clustring
Supervised - Classification
Supervised - Regression
None of these

To Predict wind velocity tomorrow based upon historical data, which ML


technique you will choice
1 point

Unsupervised clustering
Supervised - Classification
Supervised - Regression
None of these

Having large data based on the video, people watch on youtube, which ML
technique you will choose to find the group segment.
1 point

Unsupervised clustring
Supervised - Classification
Supervised - Regression
None of these

2D CNN technique is used for


1 point

for forecasting / prediction problem


for Image based recognition system
Finding group segment form database
none of these

Deep Learning is different from Machine Learning as


1 point

Feature extraction are done by machine in Deep-learning


Change in Algorithm is often not required for different task
Both 1 and 2
None of the above

Deep Learning requires (give your best answer)


1 point

High end CPU to train


High end GPU to train
Large amount of RAM
Large amount of Hard-disk

In terms of Intelligence - Artificial Intelligence is more Intelligent in


performance then Human Intelligence
1 point

Yes , I agree
No , It's wrong
Can't say , I am Confused
God knows who is better

AI is mostly used in
1 point

Finance Sector and Game


Manufacturing and Maintenance Sector
Security Sector
All of the above

Which Computer Vision toolbox we use to make color threshold function


1 point

Image Segmentor
Color Thresolder
Image labeler
OCR

Which Computer Vision toolbox we use to reduce noise in binary Image -


output from color threshold
1 point
Image Segmentor
Color Thresolder
Image labeler
OCR

Correct Sequence of work in Deep Learning Model generation


1 point

Collect Data- Process Data- Normalize Data-Create & Configure Network- Train Network
-Use Network (testing)
Collect Data- Normalize Data-Process Data- Create & Configure Network- Train Network
-Use Network (testing)
None of the above
Both A and B

LSTM is an advance form of RNN


1 point

RNN : Recurrent Neural Network


RNN : Regression Neural Network
RNN: Reinforced Neural Network
None of these

Regression Model output parameter


1 point

RMSE
Accuracy
SSE
Mean

if you have fewer image data, which technique you will use to make efficient
Deep Neural Network.
1 point

I will create single Set of CNN with high number of filters


I will use transfer learning technique by using AlexNet or GoogleNet
Both A &B
None of the above

LSTM can be used for sequence Image data also


1 point

True
False
Which is not the part of MATLAB Deep Learning
1 point

Convolution Neural Network


Long Sort term memory
Recurrent Neural Network
Cognitive Neural Network

In which case AI can't be used


1 point

Decision Making
Data Analytics
Prediction and Forecasting
Thinking Process

AI can understand Emotional Behaviour


1 point

No, its wrong


Yes, it is possible

Which command is used to store the address of the file ( image case)
1 point

imread
Imageread
mageFileStore
ImageDatastore

which is the correct option


1 point

use low Batch size if system GPU is Low


Use High Batch Size if GPU is Higher
Use Low Batch Size if GPU is Higher
Both A & B

Which of the following option is true about the k-NN algorithm?


1 point

It can be used for classification


It can be used for regression
It can be used in both classification and regression
None of the above

Neural Networks consist of: 1. An input layer 2. A hidden layer 3. An output


layer
1 point

only 1 is true
Only 2 is true
All of the above(1,2)
None of the above

Which function is used to extract information from Xls/CSV in a table format?


1 point

readTable
extractFileText
eadFileText
readTableText

Which function we used to tokenize the word in the document and vectorize
the entire text document.
1 point

tokenizedDocument
tokenizedTextDocument
tokenizedWordText
tokenizedTextWord

Alexnet, Googlenet, Rasnet are based on


1 point

LSTM based model


CNN based model
Both are true
None of the above

A company wants to divide its employee into their performa and assigned 5
start , 3 start, 1 start as label which model it should use
1 point

Unsupervised Model - clustering algorith


Supervised Model - Classification Model
Supervised Model - Regression Model
All of the above can be applied
Which is the right syntax to remove missing row data from weather table
data?
1 point

weather =weather(~ismissing(weather.Rainfall),:)
weather =weather(ismissing(weather.Rainfall),:)
weather =weather(removeEmpty(weather.Rainfall),:)
weather =weather(~removeEmpty(weather.Rainfall),:)

Redtron Education Service LLP


8th Mile Hasargatta Road ,15/3 Laxshmi Complex, Dasarhalli, Bangalore - 57
http://redtron.org/

Contact info
Contact Person Name : Jai Mangal Singh
Whats-App Number : 8340484492
email id : redtron.edu@gmail.com
: jaimangal.mech@gmail.com
function duty = MPPT_algorithm(vpv,ipv,delta) duty_init = 0.1; duty_min=0;
duty_max=0.85;% limits of maximum and minimum duty persistent Vold Pold duty_old;
%this for initializing and it can update the values if isempty(Vold) Vold=0; Pold=0;
duty_old=duty_init; end P= vpv*ipv; % power dV= vpv - Vold; % difference between old
and new voltage dP= P - Pold;% difference between old and new power %searching the
condition for dV/dP=0 % if satisfies the condition- no change in duty
if dP ~= 0 && vpv>30 if dP < 0 if dV < 0 duty = duty_old - delta; else duty = duty_old +
delta; end else if dV < 0 duty = duty_old + delta; else duty = duty_old - delta; end end
else duty = duty_old; end % it tries put the duty value in the limits if duty >= duty_max
duty=duty_max; elseif duty<duty_min duty=duty_min; end duty_old=duty; Vold=vpv;
Pold=P;

function duty = MPPT_algorithm(vpv,ipv,delta) duty_init = 0.1; duty_min=0;


duty_max=0.85;% limits of maximum and minimum duty persistent Vold Pold duty_old;
%this for initializing and it can update the values if isempty(Vold) Vold=0; Pold=0;
duty_old=duty_init; end P= vpv*ipv; % power dV= vpv - Vold; % difference between old
and new voltage dP= P - Pold;% difference between old and new power %searching the
condition for dV/dP=0 % if satisfies the condition- no change in duty
if dP ~= 0 && vpv>30 if dP < 0 if dV < 0 duty = duty_old - delta; else duty = duty_old +
delta; end else if dV < 0 duty = duty_old + delta; else duty = duty_old - delta; end end
else duty = duty_old; end % it tries put the duty value in the limits if duty >= duty_max
duty=duty_max; elseif duty<duty_min duty=duty_min; end duty_old=duty; Vold=vpv;
Pold=P;
irradiance value can be taken between 200 to 1000 w/m2
[0 0 300 300 500 500 1000 1000 500 500 0 0].'
for output
[0 0.25 0.2501 0.5 0.501 0.75 0.7501 1 1.01 1.25 1.2501 1.5].'
for time values
power_PVarray_grid_det

power_PVarray_250kW

power_wind_dfig

power_SOFC
Erdal Irmak, Naki Güler (2019). A Model Predictive Control Based Hybrid MPPT Method for Boost Converters. International Journal of Electronics (SCI), Accepted paper (in
publish). Erdal Irmak, Naki Güler (2013).

Application of a High-Efficiency Voltage Regulation System with MPPT Algorithm. International Journal of Electrical Power & Energy Systems (Elseiver) (SCI-E), Vol. 44, Issue
1(703-712).

Erdal Irmak, Naki Güler (2019). A Model Predictive Control Based Hybrid MPPT Method for Boost
Converters. International Journal of Electronics (SCI), Accepted paper (in publish). Erdal Irmak, Naki
Güler (2013).

Application of a High-Efficiency Voltage Regulation System with MPPT Algorithm. International Journal of
Electrical Power & Energy Systems (Elseiver) (SCI-E), Vol. 44, Issue 1(703-712).
Sir/Mam
NPTI-A,
Kerala is organising the following 3 Days
Online Programs: ELECTRIC VEHICLE & CHARGING INFRASTRUCTURE on 19-21 Aug 20,
RE FORECASTING & REMCs on 24-26 Aug &
SMART DISTRIBUTION SYSTEMS on 28-30 Sep.
Reg.Link: EV & Charging Infrastructure -https://tinyurl.com/y3btmwfx
Reg.Link: RE Forecasting &REMCs- https://tinyurl.com/yxksbr3n &
Reg. Link: Smart Distribution Systems - https://tinyurl.com/y2sjeacr

You might also like