ml5.js: Image Classification with MobileNet

Поділитися
Вставка
  • Опубліковано 20 сер 2024

КОМЕНТАРІ • 179

  • @Samuel.Sharman
    @Samuel.Sharman 6 років тому +122

    I think this guy's energy is infectious I just wish I got this excited during class.

    • @pluggedInLabs
      @pluggedInLabs 4 роки тому

      I am trying to upload the app on heroku but it is not working on the mobile, could you help me with that please!

  • @Hellokittyenby
    @Hellokittyenby 6 років тому +38

    I love his attitude.

  • @juansantiagocuadra3672
    @juansantiagocuadra3672 6 років тому +6

    I have great respect for the time and energy you put into sharing so many "chucks of knowledge" in such a wide range of domains. Thank you.

  • @writethatdown100
    @writethatdown100 2 роки тому

    The way you talk makes everything fun to learn about, it just seems like you have so much energy.

  • @kustomweb
    @kustomweb 6 років тому +3

    It can tell you that you are a snorkel, but it cannot tell you why. There are decisions, but no reasons. Dan Shifman is the best software teacher on UA-cam.

  • @ralphmoran
    @ralphmoran 3 роки тому

    More than a year ago, I found your channel and videos, I'm still learning from you. Thanks much

  • @nhasalajoshi2973
    @nhasalajoshi2973 6 років тому +2

    the sound of Dan's kitchen bell is one of the most fun things to hear in coding tutorial videos, ever.

  • @tahsintariq8757
    @tahsintariq8757 3 роки тому +9

    3:25 I can't believe Dan was actually a snorkel in disguise.

  • @PandoraMakesGames
    @PandoraMakesGames 6 років тому +9

    Wow, you're so active lately! I wish I could put out videos that fast.

  • @nitscheszter2062
    @nitscheszter2062 3 роки тому

    Dan! This gave me this. Why?
    0: {label: "prairie chicken, prairie grouse, prairie fowl", confidence: 0.09353400021791458}
    1: {label: "quail", confidence: 0.08970478922128677}
    2: {label: "drake", confidence: 0.05440836399793625}
    length: 3

  • @davidebarranca5370
    @davidebarranca5370 4 роки тому +2

    In case anyone wants to use MobileNet locally (offline), it is possible to download a local copy of the model json file and reference its path, see on GitHub a repository named "ml5-data-and-models-server"

  • @user-ww8wd3xd6n
    @user-ww8wd3xd6n 6 років тому +1

    I love your videos and i am so glad and grateful that you are teaching ML

  • @SrinivasMangipudi
    @SrinivasMangipudi 4 роки тому +1

    Dan you're so much fun! Thank you!

  • @austinschaffer7854
    @austinschaffer7854 6 років тому +3

    I just got to the 4:41 where you were wondering if all the probabilities need to add up to 100%, and I'm not sure they always do. For example, if the model has an entry for both "Dog" and "Bloodhound", it could be 100% sure that the current image is a dog, but only 80% sure that it's a bloodhound, or something like that.

    • @KuraIthys
      @KuraIthys 6 років тому +1

      If you move outside of machine learning specifically that's the difference between bayesian probabilities, and fuzzy logic.
      In a bayesian system all the possible options have to add up to 100%
      But in fuzzy logic it's not really a percentage so much as it is a relative confidence level.
      So if it says 98% dog, 78% cat and 3% goldfish, well, really it shouldn't be using percentages for that, since it's misleading, but it actually tells you that it thinks it's about 1.25 times more likely to be a dog than a cat, and almost 33 times more likely to be a dog than a goldfish, but doesn't tell you in absolute terms how likely it really is that it's a dog.
      It tells you relative to everything it knows about how likely it thinks these particular classifications are. And that can add up to anything.

    • @PhilBoswell
      @PhilBoswell 6 років тому

      Indeed, and I've seen a fair few pictures where you might even be unclear as to whether you're looking at a cat or a dog!
      Myself I would quite like to have a system which could work like how you say: it could be really quite confident that an image falls into a certain broad class, but not so certain about which sub-class it falls into, and less certain as the class got more specific.
      So maybe it could be dead sure it's a Dog, pretty sure it's a Terrier…not sure at all which one of the many breeds of terrier but willing to make an educated guess ;-)

  • @petaca39
    @petaca39 3 роки тому +2

    Good video, I want to make you some queries 1- the image that I want to classify jpg must have a special size or resolution so that MobileNet processes it in an optimal or more optimized way 2- you can introduce new classifications or jpg images or another format to MobileNet for example of bacteria since I tried with some images of bacteria and it does not classify them if possible how it can be done.

  • @enivaldobonelli
    @enivaldobonelli 4 роки тому +5

    With new versions: 1. No need for preload. 2. createIMG causes a problem, since it
    takes another parameter now. loadImage works fine.

    • @LittyXavier
      @LittyXavier 4 роки тому

      could you share your code please

    • @bensmith9253
      @bensmith9253 4 роки тому

      @@LittyXavier I had the same problem - couldn't get Dan's version to work. However if you use the examples on the ml5 main site - they are uptodate. But remember to use the Image-Classsifier for the p5.js WEB EDITOR :)

  • @sayochikun3288
    @sayochikun3288 3 роки тому

    well this was easier than I expected

  • @ioegg.
    @ioegg. 6 років тому +2

    Great tutorial!! I made a Chatbot based on Eliza and incorporated MobileNet so the bot can see.. Fun stuff, I'm adding face recognition later this week. You can see it on github and at ioegg.com
    Also, maybe the reason for the different prediction confidence values for the Oystercatcher is the canvas size or image resize was different between the two tests.

  • @azulamazigh2789
    @azulamazigh2789 6 років тому +2

    i like this guy. i am watching just because it's entertaining. i don't even care about js.

  • @jonbikaku6133
    @jonbikaku6133 5 років тому +4

    Could you also explain how to retrain a preexisting model using newer images ? Also, I know you love pure javascript but maybe a couple video using tensorflow and ml5 on a framework like React or Angular would be really appreciated ! Thanks!

  • @akshitdiwan5390
    @akshitdiwan5390 3 роки тому

    Sir your way of teaching is inspiring and fun!!!!

  • @bensmith9253
    @bensmith9253 4 роки тому

    This tut is out of date (still love you Dan! ;) ) use the examples on the ml5 main site - they are uptodate. But remember to use the Image-Classsifier for the p5.js WEB EDITOR :)

  • @washingtonmugo2253
    @washingtonmugo2253 3 роки тому

    my favorite teacher
    btw i'm from the #Future

  • @CuongNguyen-le5ic
    @CuongNguyen-le5ic 6 років тому

    Thanks, now I understand what took so long for Agumented Reality to be wide spread.

  • @majdaleid6648
    @majdaleid6648 2 роки тому

    You are amazing .your way of learning is sooo good .🙏

  • @pluggedInLabs
    @pluggedInLabs 4 роки тому

    Thanks man for making the process so awesome!

  • @TheKeefusoutdoors
    @TheKeefusoutdoors 2 роки тому

    Great video 'snorkel winkie'. Haha! Very well explained and easy to understand.Thanks!

  • @contentshark5122
    @contentshark5122 3 роки тому +1

    getting this error : Uncaught TypeError: Cannot read property 'split' of undefined (: line 57)

  • @enivaldobonelli
    @enivaldobonelli 5 років тому +2

    May, 2019. In the p5js editor image is being loaded automatically, only with the image() command.

  • @kafuu1
    @kafuu1 3 місяці тому

    Fantastic! Would you make more machine learning video later?

  • @vetyab_com
    @vetyab_com 2 роки тому

    You are awesome man! 😍😍😍

  • @AB-Prince
    @AB-Prince 6 років тому +11

    Can you a video on the raspberry pi :-)

  • @gootana
    @gootana 6 років тому +2

    Love your videos, been following for a while and learning tons. Thanks for putting this kind of stuff out there! Do you think the different probabilities in the puffin guess was because the puffin image aspect ratio might've been changed when you resized it to the canvas?

  • @naraksama3903
    @naraksama3903 2 роки тому +1

    I don't know why, but I get "TypeError: Cannot read properties of undefined (reading 'shape')" when I classify my image. Even though it's already loaded.

  • @Vikram-wx4hg
    @Vikram-wx4hg 3 роки тому

    My love for Code
    That dwindled
    This man
    'Daniel Shiffman'
    Has rekindled

  • @Bishop-wn2uk
    @Bishop-wn2uk 4 роки тому

    We are very happy to learn with your tuto

  • @lucusekali5767
    @lucusekali5767 3 роки тому +4

    For you who get error when try the code. Here is the code in lastest version of ml5
    editor.p5js.org/ml5/sketches/ImageClassification

    • @ebru1012
      @ebru1012 3 роки тому +1

      How does the online version know where your image file is? Do you need to upload it? Where is it loading from? img = loadImage('images/bird.jpg');

    • @petaca39
      @petaca39 3 роки тому

      @@ebru1012 The image of the bird is on the p5js server, which is not how to upload other images to carry out tests with the online editor

    • @davislee8565
      @davislee8565 2 роки тому

      thanks appreciate it

    • @therealpepeu
      @therealpepeu 2 роки тому

      Every image I try with that code says: Label: window screen
      Confidence: 0.18

  • @trevoriousd
    @trevoriousd 4 роки тому

    I am really enjoying this ml5.js project. I'm not very good at all of this yet, so i was wondering if you would be able to point me out to a tutorial on how to load multiple models for image classification rather than one at a time. Thanks for the great tutorials

  • @lerdi
    @lerdi 5 років тому +2

    21:06 Maybe because you resized the image so it fits the canvas.

  • @4Erlik
    @4Erlik Рік тому +1

    The p5.dom.js is now included in the p5.js / p5.min.js

  • @medericbellemare8748
    @medericbellemare8748 6 років тому +3

    inspiration for chrome extension that detect what is on the screen :P

  • @adityakanvinde9871
    @adityakanvinde9871 4 роки тому

    Hey I love you videos I have been a follower of your channel for quite a long time.
    Actually the scores for different labels don't add up 😬
    They are independent
    Eg:
    Probability the image is cat :- 97%
    Probability the image is not a cat :-100-97%=3%
    Probability the image is dog:- 95%
    Probability the image is not a dog :-100-95%=5%

  • @L76videos
    @L76videos 6 років тому +1

    Super simple! Thanks

  • @Texplanations
    @Texplanations 5 років тому +1

    Its all cool and stuff.. but I wanna learn how it got trained... how do I learn that?

  • @joereynolds1197
    @joereynolds1197 4 роки тому +1

    Thanks so much for the videos, these are all amazing! I was wondering if you/ someone would be able to help me alter the code for this so that it always accesses the rear camera instead of the front facing camera? Thanks again

  • @johanverm90
    @johanverm90 5 років тому

    Maybe js is the future for ML/classification cause it's closests to the internet than any other language..The database to handle with is enormous..maybe it's more a matter of copyright and privacy that's is not booming?.I was playing with google colab ,kaggle and tensorflow but the inputdata is always limited..So...Or i'm I wrong...I!m more an artist than a programmer so i don't see it that clearly..Keep up the good work ..It's great !!(and fun)

  • @marcholman291
    @marcholman291 4 місяці тому

    My cat looks nothing like a sweatshirt. It really doesn't. But Dan, he does kinda resemble a snorkel.

  • @odorlessflavorless
    @odorlessflavorless 4 роки тому

    @4:33 This was the doubt I too was facing. In fact, with the limited trained data in MobileNet here, I found that the confidence scores did not add upto 1(contrary to what I felt like) for imaes like that of a valley of flowers maybe due to limited pre trained data. A total beginner here. Would like to be corrected.

  • @uu-vv3ux
    @uu-vv3ux 4 роки тому +10

    This guy is the professor in "La casa de papel" :)

  • @agata0214
    @agata0214 4 роки тому

    This is amazing... so cool!

  • @codeforest9027
    @codeforest9027 5 років тому

    1 year anniversary! For this anniversary, I'm going to actually learn this xD

  • @filippo61
    @filippo61 5 років тому +4

    I got this error "DOMException: Failed to execute 'texImage2D' on 'WebGL2RenderingContext': The image element contains cross-origin data, and may not be loaded."

    • @TheCodingTrain
      @TheCodingTrain  5 років тому

      What code editor are you using? Are you running a local server? Or is it an online editor?

    • @filippo61
      @filippo61 5 років тому

      @@TheCodingTrain local server (my PC) with Visual Studio Code

    • @shlomilachmish
      @shlomilachmish 5 років тому +1

      @@filippo61 , I had the same issue when I just used chrome to open local html, solved it by running a local node server (I used the node-static npm package)

    • @LittyXavier
      @LittyXavier 4 роки тому

      @@TheCodingTrain so wont it work with the p5 web editor?

  • @enivaldobonelli
    @enivaldobonelli 5 років тому

    let label = results[0].label;
    let conf = results[0].confidence;

  • @nur__bijoy
    @nur__bijoy 3 роки тому

    Why I can't run them on my web browser when I code them on sublime text?

  • @SimpleLangSolution
    @SimpleLangSolution 6 років тому

    Wow! Just Wow!

  • @lawful_neutral
    @lawful_neutral 4 роки тому +3

    Anyone trying to use this now? I can't even seem to load an image of the puffin onto my web browser with identical code (I'm using Mozilla Firefox)

    • @riffaxelerator7299
      @riffaxelerator7299 3 роки тому

      slight change in ml5 - This code gets puffin below canvas and you should be able to go forward from there. editor.p5js.org/jasonvee/sketches/i4QEXPyMu

    • @riffaxelerator7299
      @riffaxelerator7299 3 роки тому

      here is another one with puffin on canvas if you get stuck with the last one - editor.p5js.org/jasonvee/sketches/PPuvA87r9

  • @nefwaenre
    @nefwaenre 2 роки тому

    How do i get the Image Classification folder that you have in your project panel? i can't load images into the p5 editor. So, i don't have a puffin.jpg pre-loaded nor can i load an image. How do i get those folders? Other than that the code runs fine and i get a "Model is Ready" callback. This is my first time and so, i don't know how. Could you please help?

  • @AtlasMTBRider
    @AtlasMTBRider 6 років тому

    Awesome video. thank you.

  • @zingnolan
    @zingnolan Рік тому

    thx i love you

  • @sakthisethu1115
    @sakthisethu1115 5 років тому

    When I run the above code, I get the error "sketch.js:18 Error: Failed to link vertex and fragment shaders.". When I googled it and got a solution as "Same here, solved by disable gpu backend _tfengine.ENV.set('WEBGL_PACK', false) before you do anything with tensorflow. An other option would be upgrade your graphic card driver~" . But I do not know how to apply it. Anyone got this error and resolved it ?

  • @AbdullahJirjees
    @AbdullahJirjees 2 роки тому

    Hi and thank you for the video, I have image dataset and and I already done the annotation for it, how can I use it to classify it to two classes?

  • @marcholman291
    @marcholman291 4 місяці тому

    This mobilenet is wildly inaccurate. So far it has only correctly (with 17% confidence) classified an elephant. As for squirrels and raccoons - it mistakes them for shower curtains. No joke - shower curtains! I was prepared to have my socks blown off. But this is very underwhelming. Perhaps more configuration is necessary - given that the video is 5 years old?? Anyone have similar experience?

  • @dimonddor
    @dimonddor 4 роки тому

    my workspace doesnt recognize the ml5 library.
    followed all your videos and couldnt find the solution. what can it be?

  • @mike_vahemoubayed8099
    @mike_vahemoubayed8099 4 роки тому

    Can we draw a rectangle around the puffin and get the x, y

  • @mynameisnobody1fjb372
    @mynameisnobody1fjb372 6 років тому

    Hi Daniel!
    I have been trying to get your attention unsuccessfully, you are a busy person , I know, I have a perhaps small request, and that is: Would you entertain the idea of developing a jigsaw puzzle algorithm to divide or cut a picture into the classic puzzle pieces pls.?
    Thanks

    • @TheCodingTrain
      @TheCodingTrain  6 років тому

      Please suggest here! github.com/CodingTrain/Rainbow-Topics/issues

    • @beaverjoe9171
      @beaverjoe9171 6 років тому

      wow, Thats good idea

  • @mamupelu565
    @mamupelu565 6 років тому +1

    my console says:
    Use of the orientation sensor is deprecated. p5.js:48187:6
    Use of the motion sensor is deprecated. p5.js:48187:6

    • @beaverjoe9171
      @beaverjoe9171 6 років тому

      me too. But it can show image be other browser

  • @jeanphilippelarre4218
    @jeanphilippelarre4218 3 роки тому

    hy thanks very much for all your videos. I have a problem when the model try to classifie, i am using js code without p5 and the error is Uncaught (in promise) DOMException: The operation is insecure. If you can give me an idea. It doesn't work on chrome also. thank's

  • @prasantabhattacharya7495
    @prasantabhattacharya7495 4 роки тому

    Im using a node server but the images are not even updating

  • @JaspreetSingh-fo2qe
    @JaspreetSingh-fo2qe 4 роки тому

    i got d3d error while loading ml5 model on windows but then i tried that on ubuntu and it ran fine. Don't know how.

  • @MisterYoupinet
    @MisterYoupinet 3 роки тому

    Beautiful drake.
    Did the probabilty change because of the resize of the pic?

  • @ririn.putri.anjani
    @ririn.putri.anjani 3 роки тому

    watching you, i like "really ? we dont need split train and test,".

  • @robertudrea
    @robertudrea 3 роки тому

    I’m learning this in 2021 and mobilenet says that the puffin is actually drake😂

  • @kenzoymc1717
    @kenzoymc1717 3 роки тому

    Can ml5 running as server maybe mix with node js ?

  • @debug7
    @debug7 6 років тому +1

    when you are using the new firefox developer browser you wont need a server to run p5 or any other js library :)

    • @debug7
      @debug7 6 років тому

      oh i just realised chrome can also display p5 without a server. havent tested other libraries yet

  • @letswatchcartoons181
    @letswatchcartoons181 4 роки тому

    Hi Love your video. They are very helpful. Which editor do you use? Atom and sublime does not suit me

  • @bkstyles5769
    @bkstyles5769 5 років тому

    Hi there,
    I want to know, is there a way to use object or image recognition on internet or website like on Amazon or Walmart to product images recognition, etc, rather than using real-time object detection via webcam. please reply

  • @leogaddd
    @leogaddd 6 років тому

    Can you do a simple named entity recognition?

  • @simocennetten5239
    @simocennetten5239 6 років тому

    thank you

  • @krishivagarwal5189
    @krishivagarwal5189 4 роки тому

    It isn't working on brackets.

  • @jeanphilippelarre4218
    @jeanphilippelarre4218 3 роки тому

    when i run the example of github, github.com/Edmonton-School-of-AI/ml5-Simple-Image-Classification, it doesn't work also.

  • @HarshaVardhan-jf9sd
    @HarshaVardhan-jf9sd 5 років тому

    How do i intergate P5.js within a React js project?

  • @snehitvaddi
    @snehitvaddi 4 роки тому

    @The Coding Train, Facing error like "CORS policy: Cross origin requests are only supported for protocol schemes: http, data, chrome, chrome-extension, https."
    How to resolve this? Have you run any server for this or is it just running the code??

  • @RichardVaughanMusic
    @RichardVaughanMusic 6 років тому

    Love these tutorials -thanks! Just a quick question: say you have a program/website where a user can upload their own photo to be classified by the MobileNet model (like on the ml5.js website) how ‘safe’ is that? Does MobileNet (or the website) store a record of the image in any way after using it, for example, are user-uploaded images encrypted etc?

    • @TheCodingTrain
      @TheCodingTrain  6 років тому

      This is a great question! This sketch is client-side only so the photo actually does not upload to a server, just gets evaluated by the browser on your local machine.

  • @TJCody
    @TJCody 5 років тому +1

    whenever i try to run the code i get an error in the console that says failed to execute 'texImage2D' on 'WebGL2RenderContext': The image element contains cross-origin dad , and may not be loaded.
    The issue is that i used the same code and i used the same picture so i dont know what is wrong

    • @TheCodingTrain
      @TheCodingTrain  5 років тому

      Are you running a local server?

    • @TJCody
      @TJCody 5 років тому

      @@TheCodingTrainNo, I use the the web editor

    • @TheCodingTrain
      @TheCodingTrain  5 років тому +1

      I think you are running into this issue!
      github.com/ml5js/ml5-library/issues/217
      github.com/ml5js/ml5-examples/issues/6

    • @TJCody
      @TJCody 5 років тому

      @@TheCodingTrain Thank you!

    • @TJCody
      @TJCody 5 років тому

      @@TheCodingTrain also i tried to set up a server and it was blank and it didnt show what i was coding. could you please help me?

  • @v.akamaleshpathy3408
    @v.akamaleshpathy3408 4 роки тому

    Hello sir, I love your energy I've been following your videos for a long time.
    I have a problem when I ran the final code that you show here I got this error
    "Error: Failed to link vertex and fragment shaders."
    could you help?

  • @Simon000777
    @Simon000777 6 років тому

    Hi! I am encountering some sort of error and cannot find any documentation to help me out. Using chrome or safari, I am getting the same result set every time a different image is loaded. This result set is : velvet, window screen and syringe, all with extremely low probabilities.
    I have not been able to fix this issue (I have even copy-pasted the html example from the ml5js page with no success). Please help!

    • @cooperwolfden
      @cooperwolfden 6 років тому

      Simon Robatto I'm by no means an expert at this sort of stuff, but try running it in incognito mode (private mode in Safari), from my understanding the browser will usually cache webpages and so instead of loading your updated code, it'll just reuse the same thing (this is what I've experienced at least)

    • @Simon000777
      @Simon000777 6 років тому

      Hi, thanks for the reply but unfortunately it did not work. The page behaves exactly in the same way it did before. I do not know enough about caching to figure out why but I 've tried both on safari and chrome in vain.

    • @Simon000777
      @Simon000777 6 років тому

      That is rather sad and I hope they fix it soon! Thanks for the update!

  • @koidjawebdevelopment8265
    @koidjawebdevelopment8265 5 років тому

    If you want to implement ml5.js MobileNet model with React.js, check this article:
    medium.com/@julienrioux/in-browser-ml-with-react-js-and-ml5-js-f3eeb5149404

  • @hectorlinomauvecinjunior6621
    @hectorlinomauvecinjunior6621 5 років тому

    How does i to run the program ?

  • @lank_asif
    @lank_asif 6 років тому

    Woo-hooooooo!!

  • @souravdey1227
    @souravdey1227 3 роки тому

    So he is a snorkel!!! Finally the secret is revealed!

  • @julius7824
    @julius7824 6 років тому +6

    hotdog, not hotdog

  • @Its.abhi..
    @Its.abhi.. 3 роки тому

    But he didn't imported the data set

  • @SuryaKumaran11
    @SuryaKumaran11 6 років тому

    Hi Great tutorial, is it possible to use the training with ml5 library or use the custom trained model in it?

  • @jeffguess6343
    @jeffguess6343 4 роки тому

    I can't seem to get this to work with version 0.4.3... (with 0.1.1 yes)
    Cross-Origin Request Blocked: The Same Origin Policy disallows reading the remote resource at tfhub.dev/google/imagenet/mobilenet_v2_100_224/classification/2/model.json?tfjs-format=file 2. (Reason: CORS request did not succeed).
    or
    GET tfhub.dev/google/imagenet/mobilenet_v2_100_224/classification/2/model.json?tfjs-format=file net::ERR_NAME_NOT_RESOLVED
    if i try to go to
    tfhub.dev/google/imagenet/mobilenet_v2_100_224/classification/2/model.json?tfjs-format=file
    i get “We’re having trouble finding that site.”
    does this mean the mobilenet server is down ?
    is anyone else having the same problem ?

    • @TheCodingTrain
      @TheCodingTrain  4 роки тому +1

      Hi Jeff! Can you file this at github.com/ml5js/ml5-library/issues?

  • @nickypicks4193
    @nickypicks4193 5 років тому

    how to run the code in server mode..???
    bcz while I'm opening with index.html in browser its not opening with classification work??>

    • @TheCodingTrain
      @TheCodingTrain  5 років тому

      This workflow video series might help! ua-cam.com/play/PLRqwX-V7Uu6Zu_uqEA6NqhLzKLACwU74X.html

  • @marcholman291
    @marcholman291 4 місяці тому

    It thinks my kitty is a sweatshirt.

  • @stanger963
    @stanger963 6 років тому

    The notification creeeew

  • @ralesarcevic
    @ralesarcevic 6 років тому

    I think you're getting different results 'cause if you're 100% sure it's a dog on a picture an 0% it's a cat it is indeed 100% a dog, but if you think that it has a 70% chance being an alligator and 30% being a crocodile you can say that (by just taking the average of results which is really bad statistically most of the times) it has a 50% chance of being an alligator (favorable to alligator for obviously having the highest rating between all the results)

  • @suhyunpark6972
    @suhyunpark6972 5 років тому

    Thank you so much!!

  • @linho2872
    @linho2872 6 років тому

    This is the first video i watched and it's so cool. i'm newbie so can you tell me how do you build this in 127.0.0.1 server??

    • @TheCodingTrain
      @TheCodingTrain  6 років тому

      This workflow video series will help! ua-cam.com/play/PLRqwX-V7Uu6Zu_uqEA6NqhLzKLACwU74X.html (look for the node video)