Members-Only
Recent Talks & Demos are for members only
You must be an AI Tinkerers active member to view these talks and demos.
June 03, 2026
·
Paris
AI in Wealth Management Operating Models
Explore AI's impact on wealth management operations, distinguishing between shipped systems, demos, and regulatory challenges. This mainstage panel offers a clear view of what's here and what's next.
Overview
A panel on what AI changes in the wealth-management operating model, what is shipped, what is demo-stage, and what is worth regulatory friction.
Tech stack
- AIAI: The computational system driving human-level problem-solving (e.g., GPT-4, AlphaGo), actively transforming sectors like healthcare and finance with predictive analytics.Artificial Intelligence (AI) is the system's ability to simulate human cognitive functions: learning, problem-solving, and decision-making. Key models like OpenAI's GPT-4 and Google DeepMind's AlphaGo demonstrate rapid capability expansion across diverse domains. This technology is actively deploying across critical sectors: healthcare uses AI for diagnostic image analysis (often achieving 90%+ accuracy), finance employs it for real-time fraud detection, and autonomous vehicles (Level 4) rely on its processing power. Global investment validates this impact: the AI market is projected to exceed $1.8 trillion by 2030 (a clear indicator of scale). Focus now shifts to responsible scaling and robust governance (e.g., data privacy, bias mitigation) to manage widespread integration.
- LLMLarge Language Models (LLMs) are deep learning models, built on the Transformer architecture, that process and generate human-quality text and code at scale.LLMs are a class of foundation models: massive, pre-trained neural networks (often with billions to trillions of parameters) that leverage the self-attention mechanism of the Transformer architecture (introduced in 2017) to predict the next token in a sequence. Trained on vast datasets (e.g., Common Crawl's 50 billion+ web pages), these models—like GPT-4, Gemini, and Claude—acquire predictive power over syntax and semantics. They function as general-purpose sequence models, enabling critical applications such as complex content generation, language translation, and automated code completion (e.g., GitHub Copilot). Their core value: generalizing across diverse tasks with minimal task-specific fine-tuning.
- RAGRAG (Retrieval-Augmented Generation) is the GenAI framework that grounds LLMs (like GPT-4) on external, verified data, drastically reducing model hallucinations and providing verifiable sources.RAG is a critical GenAI architecture: it solves the LLM 'hallucination' problem by inserting a retrieval step before generation. A user query is vectorized, then used to query an external knowledge base (e.g., a Pinecone vector database) for relevant document chunks (typically 512-token segments). These retrieved facts augment the original prompt, providing the LLM (e.g., Gemini or Llama 3) the specific, current, or proprietary context required. This process ensures the final response is accurate and grounded in domain-specific data, avoiding the high cost and latency of full model retraining.
- MLML is the AI subset where algorithms automatically learn patterns from data to make predictions or decisions, replacing explicit, hard-coded instructions.Machine Learning (ML) is an artificial intelligence subset focused on building systems that learn directly from data: it is not explicitly programmed. ML algorithms, including neural networks, ingest large training datasets to identify complex patterns and optimize a model's performance. This process allows the model to generalize and make accurate inferences on new, unseen data. Key applications drive major industry functions: recommendation engines (e-commerce), fraud detection (finance), and computer vision (autonomous vehicles) all leverage ML to improve efficiency and automate decision-making at scale.
- RLHFRLHF (Reinforcement Learning from Human Feedback) is a machine learning technique: it aligns an AI agent's behavior with complex human preferences using direct human judgments as a reward signal.RLHF is the industry-standard method for fine-tuning Large Language Models (LLMs) to be helpful, harmless, and accurate. The process involves three steps: first, human evaluators rank several model outputs to a prompt; second, this preference data trains a separate 'reward model' to predict human-like scores; third, the original LLM (the policy) is optimized using a reinforcement learning algorithm (e.g., Proximal Policy Optimization or PPO) guided by the reward model's feedback. This technique was crucial for the development of models like OpenAI's InstructGPT and ChatGPT, effectively bridging the gap between raw model capability and user-expected behavior.