AI Developer Advocate @google
- Gemma 💎
- Machine Learning 🤖🧠
- Google AI ⚙️🧠
- DevRel 🥑🗣️
find me also at: https://t.co/3nrTwEKoJ0
Mar 14, 2023 • 13 tweets • 3 min read
Ok, since today is Pi (π) day, maybe it's a good day to learn about it a little bit!
Here are some fun facts about the number Pi
🤓
👇
Pi is the ratio of a circle's circumference to its diameter.
It is an irrational number, meaning it cannot be expressed as the ratio of two integers.
And its digits NEVER repeat in a regular pattern.
👇
Mar 13, 2023 • 8 tweets • 3 min read
Learning how to apply Machine Learning for the Audio domain can be tricky as there are aspects related to the data that might not be obvious and it's not as popular of a topic as Image or Text
Don't worry! I got you covered!
Here are some tutorials to get you started:
👇
The first one you should take a look at is the Recognizing Keywords tutorial:
Colab is a hosted Jupyter notebook stored on Google Drive and can be shared just as any Drive file
It allows you to write and run Python🐍 code on the browser
It requires NO SETUP🤩 and provides FREE🤯 access to GPUs
2/5🧵
Jan 2, 2022 • 6 tweets • 2 min read
Around 2010, I got a job interview for one of the biggest banks in Brazil.
The Interviewer🧐 gave me a test (I aced it) and asked a lot of technical questions of course.
He also asked for my school grades (?!)🤔🤨
(at that point, grades were 10 years old...)
[1 minute]
1/6🧵
🧐: You weren't such a brilliant student, right?
Narrator🎙️: he wasn't
Me🧑🏾🦱: Yes, I wasn't. My grades before my Masters weren't great.
🧐: Since we are so big we choose to hire only the best to work here.
🎙️: that's BS...🐂💩
2/6🧵
Dec 7, 2021 • 5 tweets • 2 min read
Have you ever wanted to run a query on your NumPy array?
Like:
• where are the numbers smaller than 0?
• How many numbers are positive?
🤔
NumPy has the where method for exactly that!
🤩👍🏾
[1 min]⚡️
1/5🧵 #Python
The where method receives:
• condition (a < 0)
• Operation if cond is True (x)
• The "else" operation (y)
You only need the condition, the rest is optional*