正在加载视频...

视频加载失败

What if you could instantly access & analyze all the dYdX data in a reliable way? KYVE makes this happen ⚡ Recently, KYVE hosted a developer workshop providing an overview of how dYdX users can leverage KYVE’s tooling for an enhanced data & overall building experience. KYVE’s Data Pipeline...

16,289 次观看 • 1 年前 •via X (Twitter)

2 条评论

KYVE 💫 的头像
KYVE 💫1 年前

ICYMI, here’s the full replay of KYVE’s latest Dev Workshop for @dYdX nodes, devs, data analysts, & other data users ⤵️

denbecha 的头像
denbecha1 年前

@dYdX Get ready for $ISLM to smash through all-time highs!

相关视频

Traditional data pipelines don't work for RAG applications. There are 3 issues with them: ​ 1. Traditional data engineering solutions are optimized to handle structured data. RAG applications rely primarily on unstructured data. ​ 2. The connector ecosystem to load data from unstructured data sources is very immature. ​ 3. Traditional solutions do not offer any way to transform unstructured data into an optimized vector search index. ​ The goal of a RAG Pipeline is to solve these problems. ​ The number one objective is to create a reliable vector search index using factual knowledge and relevant context. This sounds easy, but it's one of the biggest challenges we face when building RAG applications. ​ At a high level, there are four different stages in the architecture of a RAG pipeline: ​ 1. Ingestion: Here is where the pipeline loads the information from the data source. ​ 2. Extraction: Where the pipeline processes the input data and decides how to retrieve the text contained inside them. ​ 3. Transform: Where the pipeline chunks the data and generates document embeddings. ​ 4. Load: Where the pipeline creates a search index in a vector database and loads the document embeddings. ​ There are different rabbit holes at each one of these stages. Here are three of them: ​ 1. Ingesting data once is simple. The hard part is refreshing the vector database whenever the original data source changes. ​ 2. Extracting the content of a plain text document is simple. The hard part is to extract content from complex documents containing tables, images, or cross-references. ​ 3. A simple continual chunking strategy with an overlap is simple. The hard part is to find the optimal strategy for your specific knowledge base and the way you are planning to query it. ​ In the attached video, I'll show you how you can build an enterprise-grade RAG Pipeline that solves every one of the above problems. ​ I'll use Vectorize. They partnered with me on this post. You can use them to build RAG pipelines optimized for accurate context retrieval. ​ ​ If you have a few documents lying around, set up a free account and give it a try.

Santiago

40,627 次观看 • 1 年前

Major program launch: Data Analytics Professional Certificate! This large, five-course sequence takes you all the way to being job-ready as a data analyst, and shows how to use Generative AI as a thought partner to enhance your work in this role. Offered by on Coursera, this is taught by Sean Barnes, Ph.D., a Data Science & Engineering Leader at Netflix. Analyzing data remains one of the most important skills in where the world is going with AI. This comprehensive certificate takes you all the way to being job-ready. Each course comes with practical projects demonstrated in real-world contexts, such as analyzing sales data for a Korean bakery, video game sales trends across different regions, or identifying factors impacting customer retention for a communications company. You'll also work on estimating fire distribution for forest fire prevention, analyzing how a diamond's properties affect its market value, and developing predictive models for retail sales analysis, carbon emissions, and coral reef conservation. Here's some of what you'll learn: - How to define data and categorize it into its many types such as discrete & continuous numerical, structured & unstructured, time series, categorical, and know what insights can be derived from the different types of data categories. - How to differentiate between data-related job roles and their responsibilities, and how data flows through an organization from the moment of capture to decision-making. - How to perform data processing functions and apply conditional formatting in spreadsheets to extract business value from your data using statistical calculations and best practices for visualizing and interpreting data. - How to use LLMs for stakeholder analysis, data exploration, and data visualization. - Best practices for using LLMs for as a thought partner to data analysis work By the end of this professional certificate program, you will have learned core statistical concepts, analysis techniques, and visualization methodologies that will serve as the foundation for working as a data analyst. The world needs more data analysts, especially ones who know how to use modern generative AI. With data science roles projected to grow 36% by 2033, the skills taught in this program create new professional opportunities in data. Sign up here!

Andrew Ng

85,107 次观看 • 1 年前

The Financial Revolution You Didn't Know You Needed: Account Aggregator You may have caught Amitabh Bachchan discussing Account Aggregator (AA) on Kaun Banega Crorepati recently. It wasn't just talk; it is a financial revolution in the making. The Problem: Meet Priya, an entrepreneur with a vision but no credit history. Traditional banks shut their doors on her, labeling her a 'risk.' The Solution: Enter Account Aggregator. With AA, Priya could consolidate her financial data, from bank accounts to tax returns, into one secure platform. She could then share this data with lenders on her terms. The Outcome: Priya secured a loan within days, not weeks. She took control of her financial destiny, all thanks to AA. Why Choose Agya for Your AA Journey: Security: Your data is encrypted and secure. Efficiency: One platform for all your financial data. Inclusivity: Whether you're a student, a homemaker, or an entrepreneur, Agya is for you. Amitabh Bachchan's Take: "Account Aggregator is more than a service; it's a paradigm shift in how we handle our finances." Your Next Step: Priya's story is not an outlier; it's a testament to what Agya can do for you. Take control of your financial data. Shape your financial future. Credit for the video: Kaun Banega Crorepati on Sony Pictures Entertainment Narendra Modi Nirmala Sitharaman Sahamati Nandan Nilekani ReserveBankOfIndia Ministry of Finance BG Mahesh Siddharth Shetty Pramod Varma Dilip Asbe 🇮🇳 Amrish Rau Sahil Kini Vinay Kesari irfn Vikram Bhat

Nikhil Kumar

35,314 次观看 • 2 年前

Building Data Pipelines has levels to it: - level 0 Understand the basic flow: Extract → Transform → Load (ETL) or ELT This is the foundation. - Extract: Pull data from sources (APIs, DBs, files) - Transform: Clean, filter, join, or enrich the data - Load: Store into a warehouse or lake for analysis You’re not a data engineer until you’ve scheduled a job to pull CSVs off an SFTP server at 3AM! level 1 Master the tools: - Airflow for orchestration - dbt for transformations - Spark or PySpark for big data - Snowflake, BigQuery, Redshift for warehouses - Kafka or Kinesis for streaming Understand when to batch vs stream. Most companies think they need real-time data. They usually don’t. level 2 Handle complexity with modular design: - DAGs should be atomic, idempotent, and parameterized - Use task dependencies and sensors wisely - Break transformations into layers (staging → clean → marts) - Design for failure recovery. If a step fails, how do you re-run it? From scratch or just that part? Learn how to backfill without breaking the world. level 3 Data quality and observability: - Add tests for nulls, duplicates, and business logic - Use tools like Great Expectations, Monte Carlo, or built-in dbt tests - Track lineage so you know what downstream will break if upstream changes Know the difference between: - a late-arriving dimension - a broken SCD2 - and a pipeline silently dropping rows At this level, you understand that reliability > cleverness. level 4 Build for scale and maintainability: - Version control your pipeline configs - Use feature flags to toggle behavior in prod - Push vs pull architecture - Decouple compute and storage (e.g. Iceberg and Delta Lake) - Data mesh, data contracts, streaming joins, and CDC are words you throw around because you know how and when to use them. What else belongs in the journey to mastering data pipelines?

Zach Wilson

16,688 次观看 • 1 年前