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!
@NicholasRenotte3 жыл бұрын
Heya, thanks for helping out the fam! Awesome to note!
@prettyzucchini22073 жыл бұрын
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
@NicholasRenotte3 жыл бұрын
Ah awesome, how are you finding the cert @Zachary?
@prettyzucchini22073 жыл бұрын
@@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
@NicholasRenotte3 жыл бұрын
@@prettyzucchini2207 glad I could share! Plenty of APIs in the stack to play with.
@spencergarth57874 жыл бұрын
Another great video Nick thanks! Love the intro too lol
@NicholasRenotte4 жыл бұрын
From the Somm himself! Thanks @Spencer Garth!
@mathewd68703 жыл бұрын
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 ?
@NicholasRenotte3 жыл бұрын
For these particular APIs it's all online Mathew, could take a look at the stuff from Hugging Face for alternatives?
@rainbowchild633 жыл бұрын
Hello Nicholas!. I have found interesting channel ,that will help me begins my way to programming. Thank you!
@NicholasRenotte3 жыл бұрын
AWESOME you're on the way!!
@NurefsanKopuz Жыл бұрын
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?
@sirrr.9961 Жыл бұрын
Your videos are so awesome please teach us python from scratch as I am completely a noob.
@daljeetsinghranawat635910 ай бұрын
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 ?
@tracygoodluck54693 жыл бұрын
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
@NicholasRenotte3 жыл бұрын
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!
@tracygoodluck54693 жыл бұрын
@@NicholasRenotte Yes please, will be very helpful to get a vid, I'm trying it on a large text file. Thanks
@NicholasRenotte3 жыл бұрын
@@tracygoodluck5469 got it, added to the list!
@tracygoodluck54693 жыл бұрын
Thanks a lot!
@NicholasRenotte3 жыл бұрын
@@tracygoodluck5469 anytime!!
@DhruvPatel-mg6ou3 жыл бұрын
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 ...
@NicholasRenotte3 жыл бұрын
You should still be able to call out to the TTS API, would need CORS enabled if you're deploying as an App!
@hadyalmaddah17102 жыл бұрын
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_2 жыл бұрын
how do you know in 7:25 ? translation['translations'][0]['translation'] this is a concept in python? sorry, I'm beginner.
@xarpatal84945 ай бұрын
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.
@aleksandramilicevic11533 жыл бұрын
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-john2 жыл бұрын
I am also facing the same issue
@chandanm24913 жыл бұрын
can it identify multiple different languages
@NicholasRenotte3 жыл бұрын
Yup
@hongmeixie4093 жыл бұрын
how to do that translation in real time and display side by side?
@NicholasRenotte3 жыл бұрын
Heya @Hongmei, would need to dig into this a little more. Haven't tackled it yet!
@tikiristo5454 Жыл бұрын
i want to translate a word doucument How can i do it
@nizarnizar23562 жыл бұрын
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
@lemonadepromotions23873 жыл бұрын
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
@lemonadepromotions23873 жыл бұрын
Fixed by adding var = translation["translations"][0]["translation"] guess that's a Jupiter thing. thanks again
@NicholasRenotte3 жыл бұрын
Awesome work @Lemonade Promotions!
@yogeshjadhav58514 жыл бұрын
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...
@NicholasRenotte4 жыл бұрын
Thanks @Yogesh Jadhav, I'll add it to the plan!
@coderistan Жыл бұрын
nice video
@rgm27543 жыл бұрын
Nice!!!
@NicholasRenotte3 жыл бұрын
Thanks sooo much!
@rodrigoreyes39522 жыл бұрын
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
@woodyermine21724 жыл бұрын
What’s the translation for this: rqGZgIpf
@NicholasRenotte4 жыл бұрын
Not too sure @WoodyErmine. Can you share a little more? That's the translation you got out?
@muhammetgurban21024 жыл бұрын
HELLO RENOTTE. CAN YOU SENT ME. JUPYTER FOR WINDOWS 10. PLEASE
@NicholasRenotte4 жыл бұрын
The notebook? Check this out 😀 github.com/nicknochnack/LanguageTranslationandIdentification