Загрузка видео...

Не удалось загрузить видео

На главную

📣 T-minus 1 month until Easter! 📣 get ur 🐰 baskets ready with Katy Perry Shoes x peepsbrand 😊

425,607 просмотров • 3 лет назад •via X (Twitter)

Комментарии: 11

Фото профиля lukas
lukas3 лет назад

@kpcollections @PEEPSBrand I thought it was another jumpscare

Фото профиля Propertee
Propertee1 год назад

Pour yourself some Swiftea and reminisce on every era ☕✨. From ‘Debut’ to ‘Midnights,’ this mug is the ultimate Taylor fan gift! 😉 Shop now👉🏻

Фото профиля Chris is…Lifetimes Touring
Chris is…Lifetimes Touring3 лет назад

@kpcollections @PEEPSBrand send me one, not buying

Фото профиля Steve Franssen
Steve Franssen3 лет назад

@kpcollections @PEEPSBrand Repent in the Holy name of Jesus Christ, Katy Perry. You are living for Satan.

Фото профиля peepsbrand
peepsbrand3 лет назад

@kpcollections Get your Easter basket looking PEEPtastic! 😍

Фото профиля Facu
Facu3 лет назад

@kpcollections @PEEPSBrand No kp6 no like

Фото профиля Ryan Marthaller
Ryan Marthaller3 лет назад

@kpcollections @PEEPSBrand Send me one queen! 🥰

Фото профиля 🅹
🅹3 лет назад

@kpcollections @PEEPSBrand We want music not this stop trying you’re ver grown

Фото профиля 143 Katy Perry 🦋
143 Katy Perry 🦋3 лет назад

@kpcollections @PEEPSBrand Love u mommyyyy

Фото профиля Igorzito
Igorzito3 лет назад

@kpcollections @PEEPSBrand .

Фото профиля Adriana🇨🇦
Adriana🇨🇦3 лет назад

@kpcollections @PEEPSBrand T-MINUS 1 month (minus a few days) until Vegas and my bday see ya then 🤩

Похожие видео

Lecture 2 of our Physics-Informed Neural Networks mini-series. In Lecture 1 we made the idea visible...a neural network isn’t predicting a PDE solution, it is the candidate function uᵩ(x,t), and the PDE residual rᵩ(x,t) is the leash that keeps it honest. Now the natural question follows: How can a neural network be punished for breaking a PDE when nobody ever handed it the true solution, and the equation itself contains derivatives like uᵩₜₜ and uᵩₓₓ? Here’s the satisfying answer: A PINN doesn’t need the true answer to be corrected. It only needs a way to measure how wrong it is according to the PDE! The network outputs uᵩ(x,t). A software called "autodiff" is used to compute the derivatives (uᵩₓ, uᵩₜ, uᵩₓₓ, …) exactly by applying the chain rule through the network. Those derivatives get dropped into the PDE to produce rᵩ(x,t). If rᵩ is big at some point, the loss spikes there, and gradient descent pushes the parameters so that rᵩ shrinks. The math breakdown We want a function u(x,t) that satisfies a PDE on a domain Ω. In this lecture we keep a concrete nonlinear example in mind, the damped sine-Gordon equation uₜₜ(x,t) + γ uₜ(x,t) − c² uₓₓ(x,t) + sin(u(x,t)) = 0. A PINN replaces the unknown function u with a neural network uᵩ(x,t), where ᵩ means all the network parameters (weights and biases). Now we build the physics residual by plugging uᵩ into the PDE rᵩ(x,t) = uᵩₜₜ(x,t) + γ uᵩₜ(x,t) − c² uᵩₓₓ(x,t) + sin(uᵩ(x,t)). If uᵩ were a true solution, rᵩ would be 0 everywhere. So we sample points (xⱼ,tⱼ) inside the domain. These are collocation points. At each one we evaluate rᵩ, and we define a physics loss L_phys(ᵩ) = meanⱼ |rᵩ(xⱼ,tⱼ)|². This is the punishment mechanism. (Punish just means: if |rᵩ| is big, L_phys is big; training updates ᵩ to make L_phys smaller. Reward means the loss drops, so those parameter changes are kept.) The key question was where the derivatives come from. Since uᵩ is built out of differentiable operations, we can compute uᵩₜ(x,t), uᵩₜₜ(x,t), uᵩₓ(x,t), uᵩₓₓ(x,t), at any input (x,t) we choose. Imagine a simple differentiable model written as a sum of nonlinear features uᵩ(x,t) = Σₖ vₖ σ( wₖx x + wₖt t + bₖ ) + b₀. Then the derivatives are just chain rule uᵩₓ(x,t) = Σₖ vₖ σ′(·) wₖx uᵩₓₓ(x,t) = Σₖ vₖ σ″(·) (wₖx)² uᵩₜ(x,t) = Σₖ vₖ σ′(·) wₖt uᵩₜₜ(x,t) = Σₖ vₖ σ″(·) (wₖt)². So rᵩ(x,t) is an explicit computable number at every (x,t). For the damped sine-Gordon example, it’s the same story, just with one extra nonlinear term: rᵩ(x,t) = [uᵩₜₜ(x,t) + γ uᵩₜ(x,t) − c² uᵩₓₓ(x,t)] + sin(uᵩ(x,t)). A real PINN is a deeper composition of these same building blocks, but it’s still just a chain rule, and autodiff is the machinery that does that bookkeeping reliably for big graphs. Then we train by gradient descent on the total loss. Even if we use only physics for the moment, the update is conceptually just ᵩ ← ᵩ − η ∇ᵩ L_phys(ᵩ), with learning rate η. In practice we also include initial/boundary conditions or data, because PDEs aren’t uniquely determined without them L(ᵩ) = L_data(ᵩ) + λ L_phys(ᵩ) + L_bc/ic(ᵩ), where L_bc/ic(ᵩ) enforces things like uᵩ(x,0) ≈ u₀(x) and uᵩₜ(x,0) ≈ v₀(x), or boundary conditions at x = ±L. So Lecture 2’s punchline is simple: the PDE becomes a training signal. We keep differentiating uᵩ, measuring rᵩ, and updating ᵩ until the residual goes quiet across Ω. #PINNs #PhysicsInformedNeuralNetworks #ScientificMachineLearning #AutoDiff #Backpropagation #PDE #DifferentialEquations #Optimization #MachineLearning #AppliedMath #ComputationalPhysics

Mathelirium

19,977 просмотров • 6 месяцев назад

📣 FAN MEET ALERT! 💫 RendAZvous: Where AZpires Meet AZ AZpires, the moment we’ve been waiting for is finally here! We’re thrilled to invite you to a special day with AZ Martinez, a day filled with laughter, stories, and memories we’ll cherish forever, together with your fellow co-AZpires!🫂💜 This isn’t just a Fan Meet, it’s a chance to connect with AZ, share your passion, and celebrate the bond that unites us all through her. 🫵😊🫶 Whether you’ve been with AZ from the very start or just recently discovered her world, whether you’re a Solid or a Shipper, this day and space is yours🫵 It’s a space for genuine connections, new friends, and moments that will last a lifetime with AZ herself🤗💜 Here are the details: 📅 Date: August 16, 2025 (Saturday) ⏰ Time: 2:00 PM - 7:00 PM 📍 Location: The Top, 9F, DS Global Corporate Center, Mindanao Avenue Extension, Greater Lagro, Quezon City Seats are LIMITED — don’t miss out on your chance to be part of this incredible event! Secure your spot NOW and get ready for an unforgettable day with AZ and your fellow AZpires!😊✨💜 🔗 Register here: We can’t wait to see each and every one of you; to laugh, chat, and celebrate the incredible journey we’ve shared with AZ. Let’s make this day unforgettable, a true milestone in the story of AZ and all AZpires💜🙌 See you there, AZpires! 💜✨ #AzMartinez | AZ Martinez

TEAM AZ OFFICIAL

91,906 просмотров • 1 год назад