Language Translation and Identification in 10 Minutes with Python and Watson AI

แชร์
ฝัง
  • เผยแพร่เมื่อ 24 ต.ค. 2024

ความคิดเห็น • 47

  • @exclusivestudios
    @exclusivestudios 3 ปีที่แล้ว +2

    For anyone who had this error in the console: "jwt.exceptions.DecodeError: It is required that you pass in a value for the "algorithms" argument when calling decode()."
    That error occurred because of the newest version of PYJWT, to solve that run in your console: "pip install PyJWT==1.7.1"
    btw, cool tutorial thanks man!

    • @NicholasRenotte
      @NicholasRenotte  3 ปีที่แล้ว

      Heya, thanks for helping out the fam! Awesome to note!

  • @prettyzucchini2207
    @prettyzucchini2207 3 ปีที่แล้ว +1

    Thankyou so much, you saved my butt! I have been trying to figure out how to make this for my IBM certificate and you have the only video that I apparently could find to explain to me how to do this

    • @NicholasRenotte
      @NicholasRenotte  3 ปีที่แล้ว +1

      Ah awesome, how are you finding the cert @Zachary?

    • @prettyzucchini2207
      @prettyzucchini2207 3 ปีที่แล้ว +1

      @@NicholasRenotte very informative, love the opportunity to be able to learn knew things in the AI field! I had no idea that there were so many available options on IBM

    • @NicholasRenotte
      @NicholasRenotte  3 ปีที่แล้ว

      @@prettyzucchini2207 glad I could share! Plenty of APIs in the stack to play with.

  • @spencergarth5787
    @spencergarth5787 4 ปีที่แล้ว +2

    Another great video Nick thanks! Love the intro too lol

    • @NicholasRenotte
      @NicholasRenotte  4 ปีที่แล้ว

      From the Somm himself! Thanks @Spencer Garth!

  • @mathewd6870
    @mathewd6870 3 ปีที่แล้ว +1

    Hi Nicholas,
    Very nice video with detailed information.
    Can you please guide me for the following two queries
    1. How can we go offline conversation of these detected languages?
    2. Do we have another provision means without using ibm watson ?

    • @NicholasRenotte
      @NicholasRenotte  3 ปีที่แล้ว

      For these particular APIs it's all online Mathew, could take a look at the stuff from Hugging Face for alternatives?

  • @rainbowchild63
    @rainbowchild63 3 ปีที่แล้ว +1

    Hello Nicholas!. I have found interesting channel ,that will help me begins my way to programming. Thank you!

  • @NurefsanKopuz
    @NurefsanKopuz 11 หลายเดือนก่อน

    Hi, I cannot see the language options in the video in the text to speech section. I see the service as supporting English (dialects of Australia, the United Kingdom, and the United States), French (dialects of Canada and France), German, Italian, Japanese, Korean, Portuguese (Brazil), and Spanish. How can I add languages such as Chinese or Turkish?

  • @DhruvPatel-mg6ou
    @DhruvPatel-mg6ou 3 ปีที่แล้ว +1

    Hey Mr, cool stuff
    I have small doubt about if you deploy model called sign language translator and you are getting word for example 'Thank you ' then how this text can be converted onto speech because this model is deployed on site rather than code for tts conversion ...

    • @NicholasRenotte
      @NicholasRenotte  3 ปีที่แล้ว +1

      You should still be able to call out to the TTS API, would need CORS enabled if you're deploying as an App!

  • @xarpatal8494
    @xarpatal8494 5 หลายเดือนก่อน

    Great video thanks a lot. It made my day. I have an issue with translation that how to translate from English to other languages but the output text should be in English. When i am using 'en-zh' it outputs translation in Chinese text. But i want the Chinese translation in English text. How can i do that. Pls Help me.

  • @aleksandramilicevic1153
    @aleksandramilicevic1153 2 ปีที่แล้ว +1

    Well, unfortunately, IBM account is refusing to be made, Error: Could not place order. Problem authorizing the credit card. We are unable to process your request: Those card details could not be verified with the payment gateway. i just wanted to make an account :(

    • @tolu-john
      @tolu-john 2 ปีที่แล้ว

      I am also facing the same issue

  • @sirrr.9961
    @sirrr.9961 ปีที่แล้ว

    Your videos are so awesome please teach us python from scratch as I am completely a noob.

  • @daljeetsinghranawat6359
    @daljeetsinghranawat6359 10 หลายเดือนก่อน

    Just a qurey,
    As a developer, if we develop a travel guide app.....since there is only few thousand words limit.....just to clarify ...does the developer uses these apikeys and url to create real world travel guide apps....in that case does the developer create interface for user to make payments to further use apikeys after free limit....or does the developer create its own apikeys ..implimenting them from scratch and training them on suitable data......or both ?

  • @tracygoodluck5469
    @tracygoodluck5469 3 ปีที่แล้ว +1

    Hello Nicholas! Really interesting work. Thank you for sharing. How do you slow down the voice for text to speech? Mine is talking really fast. lol

    • @NicholasRenotte
      @NicholasRenotte  3 ปีที่แล้ว +1

      Heya @Tracy, you can jerry rig it quickly and add commas to have it take longer pauses or do it through a direct request using the parameter prosody rate: e.g. Dropping rate by 20%
      curl -X POST -u "apikey:apikey" ^
      --header "Content-Type: application/json" ^
      --header "Accept: audio/wav" ^
      --header "prosody rate: -20%" ^
      --data "{\"text\":\"Adult capybaras are one meter long.\"}" ^
      --output hello_world.wav ^
      "URL/v1/synthesize?voice=en-US_HenryV3Voice"
      Let me know if you want a vid on this, might be useful!

    • @tracygoodluck5469
      @tracygoodluck5469 3 ปีที่แล้ว

      @@NicholasRenotte Yes please, will be very helpful to get a vid, I'm trying it on a large text file. Thanks

    • @NicholasRenotte
      @NicholasRenotte  3 ปีที่แล้ว +1

      @@tracygoodluck5469 got it, added to the list!

    • @tracygoodluck5469
      @tracygoodluck5469 3 ปีที่แล้ว

      Thanks a lot!

    • @NicholasRenotte
      @NicholasRenotte  3 ปีที่แล้ว

      @@tracygoodluck5469 anytime!!

  • @nizarnizar2356
    @nizarnizar2356 2 ปีที่แล้ว

    Bonsoir Nicholas!!
    I need your HELP PLZ
    i got this error when i try to test my function
    AssertionError: {'translations': [{'translation': 'Hallo'[37 chars]': 5} != 'hallo'
    I have no idea how can I fix it ? I did a long search but i didn't found anything
    Thanks for advance to anyone could help me

  • @hadyalmaddah1710
    @hadyalmaddah1710 2 ปีที่แล้ว

    Hi Nicholas,
    Very nice video with detailed information.
    Can you please guide me if i want to translate a file instead of acertain text

  • @raizera_
    @raizera_ 2 ปีที่แล้ว

    how do you know in 7:25 ?
    translation['translations'][0]['translation']
    this is a concept in python? sorry, I'm beginner.

  • @hongmeixie409
    @hongmeixie409 3 ปีที่แล้ว +1

    how to do that translation in real time and display side by side?

    • @NicholasRenotte
      @NicholasRenotte  3 ปีที่แล้ว

      Heya @Hongmei, would need to dig into this a little more. Haven't tackled it yet!

  • @lemonadepromotions2387
    @lemonadepromotions2387 3 ปีที่แล้ว

    Great explanation, I have 1 problem when trying to get only the translation is not filtering anything out, it still prints the extra data, any ideas where I have gone wrong, I am just learning and using piecharm
    TIA

    • @lemonadepromotions2387
      @lemonadepromotions2387 3 ปีที่แล้ว +1

      Fixed by adding var = translation["translations"][0]["translation"] guess that's a Jupiter thing. thanks again

    • @NicholasRenotte
      @NicholasRenotte  3 ปีที่แล้ว +1

      Awesome work @Lemonade Promotions!

  • @yogeshjadhav5851
    @yogeshjadhav5851 4 ปีที่แล้ว +1

    sir thanks for this tutorial.. pls make one more video on twitter trending, you tube trending, and other social site trending application but with online web development...

    • @NicholasRenotte
      @NicholasRenotte  4 ปีที่แล้ว

      Thanks @Yogesh Jadhav, I'll add it to the plan!

  • @chandanm2491
    @chandanm2491 3 ปีที่แล้ว +1

    can it identify multiple different languages

  • @rodrigoreyes3952
    @rodrigoreyes3952 2 ปีที่แล้ว

    Hi bady great video is posible to speach spanish and translate on ingles with out tex thaks my friends olso you any idea how to set up this Build a Speech Translation Bot with Twilio Programmable Voice and IBM Watson

  • @tikiristo5454
    @tikiristo5454 ปีที่แล้ว

    i want to translate a word doucument
    How can i do it

  • @woodyermine2172
    @woodyermine2172 3 ปีที่แล้ว +3

    What’s the translation for this: rqGZgIpf

    • @NicholasRenotte
      @NicholasRenotte  3 ปีที่แล้ว

      Not too sure @WoodyErmine. Can you share a little more? That's the translation you got out?

  • @rgm2754
    @rgm2754 3 ปีที่แล้ว +1

    Nice!!!

  • @coderistan
    @coderistan ปีที่แล้ว

    nice video

  • @muhammetgurban2102
    @muhammetgurban2102 4 ปีที่แล้ว +1

    HELLO RENOTTE. CAN YOU SENT ME. JUPYTER FOR WINDOWS 10. PLEASE

    • @NicholasRenotte
      @NicholasRenotte  4 ปีที่แล้ว

      The notebook? Check this out 😀 github.com/nicknochnack/LanguageTranslationandIdentification