일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- Absolute
- AGI
- ai
- AI agents
- AI engineer
- AI researcher
- ajax
- algorithm
- Algorithms
- aliases
- Array 객체
- ASI
- bayes' theorem
- Bit
- Blur
- BOM
- bootstrap
- canva
- challenges
- ChatGPT
- Today
- In Total
목록전체 글 (553)
A Joyful AI Research Journey🌳😊
To determine P(J∣F,I) the probability Jill Stein spoke the words 'freedom' and 'immigration', we'll apply Bayes' Theorem: P(J∣F,I) =P(J)×P(F∣J)×P(I∣J) / P(F,I) Where: P(J) is the prior probability (the overall likelihood of Jill Stein giving a speech). In our case, P(J)=0.5P(J)=0.5. P(F∣J) and P(I∣J) are the likelihoods. These represent the probabilities of Jill Stein saying the words 'freedom' ..
“Nobody tells this to people who are beginners, I wish someone told me. All of us who do creative work, we get into it because we have good taste. But there is this gap. For the first couple years you make stuff, it’s just not that good. It’s trying to be good, it has potential, but it’s not. But your taste, the thing that got you into the game, is still killer. And your taste is why your work d..
Bayesian inference is a method of statistical analysis that allows us to update probability estimates as new data arrives. In the realm of Natural Language Processing (NLP), it is often used in spam detection, sentiment analysis, and more. Let's explore the initial steps of preprocessing text data for Bayesian inference. 1. Convert Text to Lowercase: To ensure consistency, we convert all text da..
When working with data in Python, the pandas library is a vital tool. However, a common hiccup new users face is the "NameError" related to its commonly used alias 'pd'. Let's understand and resolve this error. The message "NameError: name 'pd' is not defined" indicates that the pandas library, commonly aliased as "pd", hasn't been imported. The solution is straightforward. You need to ensure th..
In the constantly evolving realm of artificial intelligence, a recent article by Troy Woodson caught my attention. Published on July 10, 2023, the piece titled "How AI Can Have a Personality and Why It Matters" delves deep into the concept of AI personalities, especially concerning Large Language Models (LLMs). According to Woodson, AI is not just an amalgamation of algorithms and data. LLMs lik..
In the context of the Naive Bayes classifier, probability normalization plays a vital role, especially when we want our probabilities to reflect the true likelihood of an event occurring in comparison to other events. When predicting class labels using the Naive Bayes formula, we compute the product of feature probabilities for each class. However, these products do not sum up to 1 across classe..
Let's break down the regex pattern \b\w+\b and explain it with examples. 1. \w The \w metacharacter matches any word character, which is equivalent to the character set [a-zA-Z0-9_]. This includes: Uppercase letters: A to Z Lowercase letters: a to z Digits: 0 to 9 Underscore: _ 2. \w+ The + is a quantifier that means "one or more" of the preceding character or group. So, \w+ matches one or more ..
One of the best ways to truly understand the potential and application of artificial intelligence is by examining real-world systems currently in operation. For instance, in late 2016, Google unveiled its cutting-edge Neural Machine Translation System. This isn't just another research paper; this system now powers Google Translate, one of the most widely-used translation tools globally. You can ..
I recently came across TIME's list of the 100 Most Influential People in AI for 2023, and I am truly inspired. It's remarkable to see the diverse array of talents, from pioneering researchers to visionary entrepreneurs, who are driving change and contributing to innovation in artificial intelligence. :) https://time.com/collection/time100-ai/ The 100 Most Influential People in AI 2023 Here’s who..
Meta introduced an AI-powered multilingual speech and text translator💥 SeamlessM4T, is an all-encompassing AI translation model supporting nearly 100 different languages. This model can handle tasks like: Speech-to-Text: From Voice to Words Speech-to-Speech: Bridging Conversations Across Languages Text-to-Speech: Turning Text into Global Narratives Text-to-Text: Crafting Perfect Translations Eve..