Technical Peaks
Technical Peaks
  • Видео 11
  • Просмотров 215 638
Train CNN with MATLAB in 5 minutes #(Step by Step)
Train CNN with MATLAB in 5 minutes #(Step by Step)
This tutorial shows how to train deep learning network in MATLAB. Image classification with convolutional neural network CNN in MATLAB is performed with Deep Network Designer app and toolbox. Instead of using complex neural network code you can follow these simple steps to train any pre-trained CNN architecture with increased accuracy and model performance.
Просмотров: 286

Видео

Exponential Smoothing Forecasting Approach. Lecture # 11
Просмотров 17 тыс.4 года назад
This lecture is about the forecasting technique called Exponential Smoothing Approach. We introduce a constant called smoothing constant alpha. And provide the fraction of the error to the future demand. Ft = F(t-1) a(A(t-1) - F(t-1)) Topics: 0:00 Introduction to exponential smoothing technique 2:29 Equation for exponential smoothing 5:50 Example solved using exponential smoothing
Naive, Moving Average, Weighted Moving Average (Forecasting Techniques) Lecture # 10
Просмотров 79 тыс.4 года назад
This lecture explains the first three forecasting techniques. These approaches will help us in prediction of the future demands. The example that we took was from seasonal variations. We tried to explain the three main approaches. 0:00 Introduction to types of forecasting 1:39 Naive Approach 4:43 Moving Average Approach 6:22 two months moving average 10:10 three months moving average 12:58 Weig...
Components of Time Series (Trends, Seasonal, Cyclic and Random variations) Lecture # 09
Просмотров 21 тыс.4 года назад
0:00 Components of time series This lecture explains the basics of the forecasting techniques. The understanding of these components is very important before moving directly into the prediction of the future demands. 0:50 Trends Trend shows the increase or decrease in the overall demand. So, it remains a straight line with increase or decrease in time. 2:23 Seasonal Variations Seasonal variatio...
Center Of Gravity Method for "Minimum Distribution Cost" Lecture # 07
Просмотров 3,1 тыс.4 года назад
This lecture describes the technique for finding the location for the minimum cost of distribution of products. This method is known as Center of Gravity Method because it brings the effect of all locations of markets and finds us the centre for our warehouse, storage or industry for the minimum cost. 0:00 Introduction to Center of gravity method 1:08 cost of distribution 2:24 Example minimum c...
Minimising the Handling Cost in "Process Oriented Layout. Lecture # 08
Просмотров 16 тыс.4 года назад
0:00 Process Oriented Layout 0:52 Introduction to handling cost 3:33 Equation for handling cost 6:08 Problem/Example 6:45 Number of units table 14:24 Problem Conditions 18:10 solution to the problem 20:16 Initial cost calculations 24:17 Minimizing the handling cost 28:42 Minimized handling cost Calculation ▶A machine shop, consisting of 6 distinct production areas is planning to redesign its la...
Locational Break-Even Analysis. Lecture # 06.
Просмотров 14 тыс.4 года назад
This lecture is about finding the location for the minimum cost for a certain number of units. We might have different locations in our view for selection based on the cost involved. And for selection of a single location we need to consider the number of units we are willing to produce. Because we might have to have more cost for one location at a certain location. And changing the location we...
Factor Rating Method for location selection. Lecture # 05.
Просмотров 28 тыс.4 года назад
This lecture is about the selection of location using Factor Rating Method. We must have a number of factors that are required for the project or production. Each of those factors must have a certain value of importance. And based on that importance we have to provide them with a factor from the scale selected. We generally select the scale form (0-1) or from 0 to 100. Sum of all the factors or...
Electromechanical System Modeling DC Motor. Lecture # 11
Просмотров 12 тыс.4 года назад
This lecture is about modeling of the electromechanical systems. In the previous lectures we found the mathematical model electrical systems as well as mechanical systems. Electromechanical system is the combination of both of these systems. And we use these models for finding the mathematical model of electromechanical systems. As an example we are using a DC motor and trying to model it. The ...
Network Diagram for Activity On Node (AON) and Activity On Arrow (AOA) Technique.
Просмотров 18 тыс.4 года назад
There are two basic techniques to draw a network diagram for the activities of a project once their precedences are known. AON - Activity on Node technique. AOA - Activity on Arrow Technique. There is not much difference between them. But in AON we represent the activity by the Node. While in AOA technique we represent the Activity on Arrow. We also have to use the dummy activity at certain pla...
Antenna Position control with closed loop control system Lecture # 03
Просмотров 8 тыс.4 года назад
In this video we tried to explain the mechanism for controlling the position of the antenna by using closed loop feedback control loop. We provide the input by rotating the knob of the potentiometer to our desired angle and as a result we get the output to be the rotation of the antenna to that set desired position. We also explained all the parts conceptually to be very much clear. The working...

Комментарии

  • @udaytamrakar4705
    @udaytamrakar4705 Месяц назад

    Thank you so much my college teacher also explaining this question in class but I didn't get the single thing which he was trying to explain but you explain it in very easy way

  • @user-zr8pt9ym4d
    @user-zr8pt9ym4d 2 месяца назад

    Very good stuff, can i please have access to the hidden videos for the Antenna Position control with closed loop control system Lecture please?

  • @blackloverstanding9583
    @blackloverstanding9583 2 месяца назад

    I am watching before 6 hour of the exam❤

  • @technicalpeaks
    @technicalpeaks 2 месяца назад

    % Specify the image data directories trainDataDir = 'Dataset/Training'; valDataDir = 'Dataset/Validation'; testDataDir = 'Dataset/Testing'; % Define the image data generators trainData = imageDatastore(trainDataDir, ... 'IncludeSubfolders',true, ... 'LabelSource','foldernames'); valData = imageDatastore(valDataDir, ... 'IncludeSubfolders',true, ... 'LabelSource','foldernames'); testData = imageDatastore(testDataDir, ... 'IncludeSubfolders',true, ... 'LabelSource','foldernames');

  • @soshomastho5246
    @soshomastho5246 2 месяца назад

    Can you please share the code importing the images in matlab workspace?

    • @technicalpeaks
      @technicalpeaks 2 месяца назад

      Okay. Please check the pinned comment.

  • @roshanmarode4679
    @roshanmarode4679 3 месяца назад

    I like it. Thank you for such a wonderful explanation sir

  • @selinakhosa592
    @selinakhosa592 4 месяца назад

    Wooooow this helped alot

  • @shortstories7771
    @shortstories7771 4 месяца назад

    How you ploted the grah on which basis?

    • @technicalpeaks
      @technicalpeaks 4 месяца назад

      The x is number of products produced. Y is cost for producing x products

  • @Angelinax111
    @Angelinax111 5 месяцев назад

    On what value didnu plot the graph? How u take it out? Thr x coordinates

    • @technicalpeaks
      @technicalpeaks 5 месяцев назад

      The x is number of products produced. Y is cost for producing x products

  • @shambhulamichhane9655
    @shambhulamichhane9655 5 месяцев назад

    Your teaching is very bad. cannot be understood anything

  • @kanakbatra4884
    @kanakbatra4884 6 месяцев назад

    Bro why am i studying this when i am not even a science student 😭😭

  • @kulturesports
    @kulturesports 6 месяцев назад

    Have an exam in 6 hours.. thank you very much

  • @agrima7197
    @agrima7197 6 месяцев назад

    thnkuuu sirrr 🫡

  • @samanthachikuku4297
    @samanthachikuku4297 6 месяцев назад

    Too much repetition

    • @technicalpeaks
      @technicalpeaks 6 месяцев назад

      You sound like my Research Supervisor 😅

  • @user-yv4is5nl9i
    @user-yv4is5nl9i 8 месяцев назад

    Sir english na bolaa kro😢 baqi sai h

  • @AmjadAliSyd
    @AmjadAliSyd 8 месяцев назад

    👍🏼

  • @d-76reetinarshanahr43
    @d-76reetinarshanahr43 9 месяцев назад

    its definitely worth it. thankyou so much.

  • @raishussein4046
    @raishussein4046 9 месяцев назад

    Just watching this 5 mins before exam thanks bro

  • @vedantsen3048
    @vedantsen3048 11 месяцев назад

    Thankyou brother

  • @chiefdoer
    @chiefdoer 11 месяцев назад

    Thank you

  • @rushinisandamini2461
    @rushinisandamini2461 11 месяцев назад

    Thank you sir from sri lanka

  • @rushinisandamini2461
    @rushinisandamini2461 11 месяцев назад

    Thank you sir.from sri lanka..

  • @francismali5840
    @francismali5840 Год назад

    Thank you so much ❤️❤ Peace be unto you sir❤🇿🇲🇿🇲🇿🇲🇿🇲

  • @sanda_muthu2854
    @sanda_muthu2854 Год назад

    Thank you so much!

  • @udishakipathsala1247
    @udishakipathsala1247 Год назад

    From India and doing masters in economics your video's is so helpful to get to learn basic concepts of time series ❣️

    • @technicalpeaks
      @technicalpeaks Год назад

      I am glad to be of help! Best wishes for your Economics 🌻

  • @mahzaibsheikhsaeed9616
    @mahzaibsheikhsaeed9616 Год назад

    MERA TU X=73.33 ARAHA HY SITE X CORDINATE Y CORDINATE OUTPUT X x Q A 30 20 2000 60000 B 90 110 1000 90000 C 130 130 1000 130000 D 80 40 2000 160000 6000 440000 = 73.33333333

  • @itsjustthatoneguy9657
    @itsjustthatoneguy9657 Год назад

    thank you now i understand the difference

  • @sanadilawar2554
    @sanadilawar2554 Год назад

    Excellent lecture sir

  • @karanrwt
    @karanrwt Год назад

    bhai jb english m dikkat h to hindi m hi bnalo video

  • @navketan1965
    @navketan1965 Год назад

    Sir, If I am doing double exponential smoothing 5 period moving average with a software program--after 5 period exponential moving average is calculated say (X) does computer do second calculation with data X and (X-t1) (X-t2) (X-t3) (X-t4)- - - - forgive me,I went to college 50 years ago..(X-t1) is exponential moving average one period prior & so on.

    • @technicalpeaks
      @technicalpeaks Год назад

      Hi. Navketan, I couldn't quite understand.

    • @technicalpeaks
      @technicalpeaks Год назад

      For exponential smoothing, we need the difference of previous period Actual and predicted, combining with moving average of five periods.

  • @user-gq5si6sn8v
    @user-gq5si6sn8v Год назад

    hello please can you make the other videos public @technical peaks

    • @technicalpeaks
      @technicalpeaks Год назад

      Hi, Jason. I wish I could, but they are too long. That's why they get very few views. I'll make them shorter before I make them public again

  • @mahammedsahid2273
    @mahammedsahid2273 Год назад

    X asix answer will be 73.3

    • @technicalpeaks
      @technicalpeaks Год назад

      Thanks for pointing it out! I'll double check and pin a comment if required!

  • @_vishchauhan
    @_vishchauhan Год назад

    You are good teacher 👍

  • @xhenihoxha7093
    @xhenihoxha7093 Год назад

    Thank you so much, your explanation is much more understandable than my phd.professor! Great job !

    • @technicalpeaks
      @technicalpeaks Год назад

      Glad it was helpful!

    • @soshomastho5246
      @soshomastho5246 Год назад

      So true! Will support you by subscribing and sharing it with my fellows!

  • @favouraleph829
    @favouraleph829 Год назад

    Now I understand better. Thanks

  • @mayanksikka379
    @mayanksikka379 Год назад

    Sir mene exam me A,B,C location thi Usme Location C best suitable aayi par mene Location C 1st position Location B 2nd position and Location C 3rd position kar diya To marks katenge kya ??

    • @technicalpeaks
      @technicalpeaks Год назад

      It depends on your professor how he considers it. Wish you all the best 🤞

    • @mayanksikka379
      @mayanksikka379 Год назад

      @@technicalpeaks Thanks Sir

  • @avishkaprasanna9819
    @avishkaprasanna9819 Год назад

    Thank you sir👍🌿

  • @pushpabhau7689
    @pushpabhau7689 Год назад

    Ab or video lao sir

  • @tsehayenegash8394
    @tsehayenegash8394 Год назад

    I have 15 years temperature data. I can I determine the trend temperature by using multiple regression?

    • @technicalpeaks
      @technicalpeaks Год назад

      Yes. You can create trend using yearly average but temperature is seasonal so, I would go for monthly averages. And create seasonal or cyclic variations. Linear or non linear regressions can assist in creating trends for such a data!

    • @tsehayenegash8394
      @tsehayenegash8394 Год назад

      @@technicalpeaks I appreciate your help. How can I create seasonal variation at a given temperature data? please send me your email I send one year data

  • @bontu4018
    @bontu4018 Год назад

    I have one question how to a form product dd for the least period is given below period dd period 1,2,3,4,5,6,7,8,9 dd 44,52,50,54,55,55,60,56,62 develop a linear trend equation ,predict the dd value for the next period and find the regression equation solution

  • @bontu4018
    @bontu4018 Год назад

    Thank you so much I have one question how to a form product dd for the least period is given below period dd period 1,2,3,4,5,6,7,8,9 dd 44,52,50,54,55,55,60,56,62 develop a linear trend equation ,predict the dd value for the next period and find the regression equation

  • @Nacho-lp5tl
    @Nacho-lp5tl Год назад

    I can see at least 2 mistakes in the second matrix

    • @technicalpeaks
      @technicalpeaks Год назад

      Can you please mention them! I would appreciate it!

  • @okomefelix160
    @okomefelix160 Год назад

    Nice one and God bless you richly sir

  • @mohamedantar6865
    @mohamedantar6865 Год назад

    thank you, that was way helpful to understand the problem if possible make a video of how to automate the process of minimizing the cost (using metaheuristic optimization technique) thanks again you are awesome

  • @JakeSig
    @JakeSig Год назад

    Excellent videos, keep up the good work mate!

  • @karllocke4088
    @karllocke4088 2 года назад

    What factors could you use to derive a suitable alpha, could you please do a lecture on alpha selection, many thanks

  • @karllocke4088
    @karllocke4088 2 года назад

    Well explained, thanks so much

  • @midnightdishwasher1071
    @midnightdishwasher1071 2 года назад

    hello is this example connected to the previous topic?

    • @technicalpeaks
      @technicalpeaks 2 года назад

      Yes. This is another technique commonly used for forecasting. I made it separately because the concept is a little different from the rest!

  • @midnightdishwasher1071
    @midnightdishwasher1071 2 года назад

    thanks alot

  • @lamagh778
    @lamagh778 2 года назад

    Thank u soooo much , you helped me🙏🏻

    • @technicalpeaks
      @technicalpeaks 2 года назад

      I am glad to be of help! Please do subscribe! Would help me a lot!