Video wird geladen...

Video konnte nicht geladen werden

Zur Startseite

3 “security” Bills. 1 Agenda! C-2: Surveillance C-8: Internet Control C-9: Speech Restrictions Our Charter is slowly being deleted. Line by line. Time to wake Up Canadians 🇨🇦

64,885 Aufrufe • vor 9 Monaten •via X (Twitter)

0 Kommentare

Keine Kommentare verfügbar

Kommentare vom Original-Post werden hier angezeigt

Ähnliche Videos

THE FOUR HORSEMEN STORY DOESN’T MAKE SENSE!!!🚨🚨🚨 Thread🧵 Notice : this is pure speculation and nothing about this is factual information. All the information provided is fully based on what we see/saw on the internet. Please RT for awareness. First of all i would just like to say that A-Reece has no reason not to answer his phone for a whole month especially from a guy that he worked with before and has a good working relationship with. Something just doesnt feel right. Get your popcorn🍿 1. This first started when Nasty C leaked or hinted on being on the same song as A-Reece. Note that Nasty C specifically mentioned that Stogie T asked him to do a hook for him and says he will work on the verse in the meantime, meaning that he was initially asked to do both a hook and a verse. Also note that the Date of this interview is back in may meaning that the song had been in the making for awhile. BET! 2. Stogie T finally talks about the after it comes out on a radio show. He clearly states that he sent them both the beat and with Nasty C he talks about a hook and with A-Reece he is clearly referring to a verse/bars since he says “things that Slimes know him for”. BET! 3. L Tido invites MAGGZ on his podcast and he clearly indicates that MAGGZ is “ GONNA” (note that word) have the best verse on the song and during this time L Tido only knew that only Stogie T, A-Reece and MAGGZ will have verses while Nasty C is on the hook and i will prove that on number 4. So by this time L Tido already underestimates Stogie T and A-Reece pen. 4. After the song drops L Tido’s tone changes from MAGGZ to Nasty C having the best verse and clearly indicates that Nasty C didn’t have a verse and was initially supposed to be on only the hook and indicates again that Nasty C sent his verse a week before the song released. The song got released on the 28th of November meaning that Nasty C sent his verse during the week 16th - 22th This is 4 proofs that Nasty C was asked for a hook. Note and pay proper attention as this leads into 5 down below…

theboyjay

34,532 Aufrufe • vor 6 Monaten

[LSTM] by Hand ✍️ LSTMs have been the most effective architecture to process long sequences of data, until our world was taken over by the Transformers. LSTMs belong to the broader family of recurrent neural network (RNNs) that process data sequentially in a recurrent manner. Transformers, on the other hand, abandon recurrence and use self-attention instead to process data concurrently in parallel. Recently, there is renewed interest in recurrence as people realized self-attention doesn’t scale to extremely long sequences, like hundreds of thousands of tokens. Mamba is a good example to bring back recurrence. All of a sudden, it is cool to study LSTMs. How do LSTMs work? [1] Given ↳ 🟨 Input sequence X1, X2, X3 (d = 3) ↳ 🟩 Hidden state h (d = 2) ↳ 🟦 Memory C (d = 2) ↳ Weight matrices Wf, Wc, Wi, Wo Process t = 1 [2] Initialize ↳ Randomly set the previous hidden state h0 to [1, 1] and memory cells C0 to [0.3, -0.5] [3] Linear Transform ↳ Multiply the four weight matrices with the concatenation of current input (X1) and the previous hidden state (h0). ↳ The results are feature values, each is a linear combination of the current input and hidden state. [4] Non-linear Transform ↳ Apply sigmoid σ to obtain gate values (between 0 and 1). • Forget gate (f1): [-4, -6] → [0, 0] • Input gate (i1): [6, 4] → [1, 1] • Output gate (o1): [4, -5] → [1, 0] ↳ Apply tanh to obtain candidate memory values (between -1 and 1) • Candidate memory (C’1): [1, -6] → [0.8, -1] [5] Update Memory ↳ Forget (C0 .* f1): Element-wise multiply the current memory with forget gate values. ↳ Input (C’1 .* o1): Element-wise multiply the “candidate” memory with input gate values. ↳ Update the memory to C1 by adding the two terms above: C0 .* f1 + C’1 .* o1 = C1 [6] Candiate Output ↳ Apply tanh to the new memory C1 to obtain candidate output o’1. [0.8, -1] → [0.7, -0.8] [7] Update Hidden State ↳ Output (o’1 .* o1 → h1): Element-wise multiply the candidate output with the output gate. ↳ The result is updated hidden state h1 ↳ Also, it is the first output. Process t = 2 [8] Initialize ↳ Copy previous hidden state h1 and memory C1 [9] Linear Transform ↳ Repeat [3] [10] Update Memory (C2) ↳ Repeat [4] and [5] [11] Update Hidden State (h2) ↳ Repeat [6] and [7] Process t = 3 [12] Initialize ↳ Copy previous hidden state h2 and memory C2 [13] Linear Transform ↳ Repeat [3] [14] Update Memory (C3) ↳ Repeat [4] and [5] [15] Update Hidden State (h3) ↳ Repeat [6] and [7]

Tom Yeh

72,966 Aufrufe • vor 2 Jahren