DAILY NEWS

Stay Ahead, Stay Informed – Every Day

Advertisement
Coordinate-space diffusion improves video consistency



Leveraging multi‑view point tracking as geometric supervision for video diffusion models reduces the cross‑view jitter that has plagued monocular pipelines. By routing attention features through an auxiliary tracking head, the generated novel‑view videos maintain better alignment with the physical scene across camera motions.

Before this work, two families dominated novel‑view video synthesis. Explicit 3‑D reconstructions fed geometry into renderers, but off‑the‑shelf modules faltered on dynamic objects, producing warped artifacts. Purely camera‑conditioning diffusion models delivered eye‑catching visuals yet drifted as the viewpoint changed, betraying the underlying motion. Both routes left a gap between visual fidelity and geometric consistency.

The core contribution of MVTrack4Gen is an auxiliary multi‑view tracking head that restores those lost correspondences. The authors observe that “specific attention layers encode strong correspondence cues, where query features attend to key features at geometrically corresponding locations across views and over time, and the misalignment of these correspondences causes motion inconsistency” (1). By routing the attention features into a point‑tracking objective, the model learns to keep motion aligned across perspectives, and “across diverse benchmarks, our method achieves state‑of‑the‑art geometric consistency and competitive camera accuracy” (1).

The paper’s scope stops short of a turnkey solution. The codebase and pretrained checkpoints are promised but not yet released, so reproducibility hinges on a future pull‑request rather than an immediate drop‑in. Moreover, the tracking supervision assumes access to multi‑view point tracks, a requirement that may be costly for bespoke datasets. This suggests that scaling the approach to truly in‑the‑wild video collections will demand either synthetic supervision or more efficient tracking pipelines.

If the reported gains hold, any video diffusion stack that currently conditions only on camera pose should be retrofitted with a lightweight correspondence head. Running a standard multi‑view consistency benchmark on the augmented model will reveal whether the modest architectural addition truly closes the realism gap that has constrained AI‑generated video for production use.

References

MVTrack4Gen: Multi-View Point Tracking as Geometric Supervision for 4D Video Generation



Source link

How to Price Options at the Institutional Level Using AI (PINNs) and Python



If you work or study the derivatives market, you know that speed and accuracy in calculating options prices are not just technical goals — they are competitive differentiators. Traditionally, we rely on the Black-Scholes model or Monte Carlo simulations structured in legacy code to approximate the fair price of a contract. However, when we need to scale these calculations to thousands of simultaneous requests or handle complex boundary conditions, processing bottlenecks appear. This is where the fusion between Artificial Intelligence and Financial Physics comes in: PINNs (Physics-Informed Neural Networks). In this article, I will show you how to consume an institutional-grade infrastructure based on physics-informed neural networks to price options in milliseconds using Python. What are PINNs and why do they matter in finance?Unlike traditional neural networks that need billions of historical data to “learn” a trend (and that often fail when trying to extrapolate), PINNs integrate mathematical laws directly into their loss function. mathematical hallucinations and we achieve absurdly fast inference power, ideal for high-frequency systems (HFT) and real-time risk management. Hands-on: Consuming PINN Master in PythonTo avoid having to assemble, train and host a cluster of GPUs to run this network from scratch, we will use PINN Master – Institutional Option Pricing, a robust API hosted in AZURE that exposes this model ready for production. Best of all? It has a 100% free tier for testing. Step 1: Get your credentialsBefore running the script, you just need to access the official PINN Master page on RapidAPI and subscribe to the free plan to release your access token. If you have any questions about getting started, there is a very simple to follow Official PINN Master Startup Tutorial. Step 2: The CodeWith your key in hand, use the code below to make a call to price a call: import requests # High performance API endpoint url = “https://pinn-master-institutional-option-pricing.p.rapidapi.com/v1/price” # Contract pricing parameters querystring = { “spot”: “100.0”, # Current price of the underlying asset “strike”: “100.0”, # Option strike price “volatility”: “0.20”, # Implied volatility (20%) “rate”: “0.05”, # Risk-free interest rate (5%) “maturity”: “1.0”, # Time to expiration (1 year) “type”: “call” # Contract type: call or put } headers = { “X-RapidAPI-Key”: “YOUR_FREE_CHAVE_AQUI”, “X-RapidAPI-Host”: “pinn-master-institutional-option-pricing.p.rapidapi.com” } try: response = requests.get(url, headers=headers, params=querystring) response.raise_for_status() dados_precificacao = response.json() print(“— PINN Master Invocation Result —“) print(dados_precificacao) except requests.exceptions.RequestException as e: print(f”Error connecting to quant infrastructure: {e}”) Enter fullscreen mode Exit fullscreen mode Why is this approach a game changer? Predictable Latency: By transferring the complexity of the mathematical calculation to an optimized neural network inference in the cloud, you gain homogeneous response time. Infrastructure Abstraction: The entire scalability architecture in AZURE is hidden behind a clean GET method. Easy Integration: You can plug this return directly into trading dashboards, dynamic spreadsheets or order execution bots.



Source link