Skip to content

Commit cfa517e

Browse files
authored
Merge pull request #16 from kperpignant/changes
2.23.26
2 parents c62d211 + b45b3fa commit cfa517e

1 file changed

Lines changed: 20 additions & 0 deletions

File tree

posts/Week-2.16.26.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
This week we watched a pretty long video on LLMs (https://www.youtube.com/watch?v=zjkBMFhNj_g)
2+
It provided a beginner friendly intro to LLMs, though still a bit confusing. Talks about the technology behind systems
3+
like CHATGPT, training, and possible future advancements. How parameters are relatively small compared to what they generate, like hundreds of billions of Parameters dispersed throughout the
4+
neural network..
5+
And Possible ways to jailbreak/find exploits, or getting the LLM to do things it's not supposed to. Interesting stuff.
6+
7+
Moving on. Continuing working on neetcodes and boy is it not getting any easier. I still find abstracting to be difficult.
8+
Except maybe the Valid Palindrome one. Although that's probably because I've worked on palindrome like problems a number of times.
9+
10+
Though this one was a bit more complicated:
11+
12+
isPalindrome(s) {
13+
let flipped = s.toLowerCase().replace(/ /g, "").replace(/[^a-zA-Z0-9\s]/g, '').split('').reverse('').join('')
14+
let cleaned = s.toLowerCase().replace(/[^a-z0-9]/g, '')
15+
return cleaned === flipped ? true : false
16+
}
17+
Had to use regex this time around, I could probably remove one of those replace() too.
18+
In the end learning things like this really comes down to repetition, so I've just got to keep grinding.
19+
20+
El Psy Congroo

0 commit comments

Comments
 (0)