0Pricing
MLOps Academy · บทเรียน

สร้างรายงานการเคลื่อนด้วย Evidently

สร้างรายงานการเคลื่อนและคุณภาพที่แชร์ต่อได้

สร้างรายงานการเคลื่อนด้วย Evidently เป็นบทเรียน MLOps Academy ฟรีบน CoddyKit นี่คือบทเรียนที่ 3 จากทั้งหมด 4 บทเรียน คุณสามารถอ่านบทเรียนทั้งหมดด้านล่างฟรี — จากนั้นลองปฏิบัติด้วยตัวคุณเองในเบราว์เซอร์พร้อมตัวแก้ไขโค้ดในตัวและติวเตอร์ AI ตลอด 24/7 บทเรียนนี้เป็นส่วนหนึ่งของเส้นทางการเรียน MLOps Academy และความก้าวหน้าของคุณจะซิงค์ข้ามเว็บและแอป CoddyKit คอร์ส MLOps Academy มีบทเรียนทั้งหมด 4 บทเรียน

บางส่วนของบทเรียนนี้ยังไม่ได้รับการแปล และแสดงเป็นภาษาอังกฤษ

Drift You Can Share

Raw PSI and KS numbers are great for code, but teammates want a clear picture. Evidently turns drift checks into shareable visual reports. 📈

What Evidently Does

Evidently is an open-source Python library that compares a reference dataset against current data and renders ready-made drift and quality reports.

Install It First

Getting started is a single pip install. Then you import the report and preset you need for the analysis.

pip install evidently

Reference vs Current

Every Evidently report needs two frames: a reference baseline, usually training data, and the current production data you want to compare against it.

reference = train_df
current = production_df

The Data Drift Preset

A preset bundles many checks at once. DataDriftPreset runs a per-feature drift test and summarizes how many features moved.

from evidently.report import Report
from evidently.metric_preset import DataDriftPreset

Run a Report

Build a Report with your chosen metrics, then run it on both datasets. Evidently picks sensible drift tests per column automatically.

report = Report(metrics=[DataDriftPreset()])
report.run(reference_data=reference, current_data=current)

Save It as HTML

Export the report to a single HTML file. Anyone can open it in a browser, no Python required, which makes sharing painless.

report.save_html("drift_report.html")

Get the Result as a Dict

For automation, pull the report out as a dict instead of HTML. Now your pipeline can read drift flags and act on them in code.

result = report.as_dict()
drift = result["metrics"][0]["result"]

Beyond Drift

Evidently is not only for drift. The DataQualityPreset flags missing values and odd ranges, so you catch broken inputs alongside shifting ones.

Test Suites for Pass or Fail

When you want a clear verdict, use an Evidently TestSuite. It returns pass or fail per check, perfect for gating a CI pipeline.

Schedule It

The real power comes from running reports on a schedule, like daily, and storing each one. Over time you build a living history of your data health. ⏱️

Quick Check

One question on wiring drift into automation.

Recap

You met Evidently: feed it reference and current data, run a preset, then save HTML for humans or as_dict for automation. Schedule it to track data health over time. 🎯

คำถามที่พบบ่อย

บทเรียน “สร้างรายงานการเคลื่อนด้วย Evidently” ฟรีหรือไม่

ใช่ — ข้อความเต็มของ “สร้างรายงานการเคลื่อนด้วย Evidently” ฟรีให้อ่านที่นี่บนเว็บ เพื่อปฏิบัติแบบโต้ตอบ (ตัวแก้ไขโค้ดในตัวและติวเตอร์ AI ตลอด 24/7) และปลดล็อคส่วนที่เหลือของคอร์ส MLOps Academy ให้อัปเกรดเป็น CoddyKit PRO คอร์ส MLOps Academy มีบทเรียนทั้งหมด 4 บทเรียน

คุณจะเรียนรู้อะไรในบทเรียน “สร้างรายงานการเคลื่อนด้วย Evidently”

สร้างรายงานการเคลื่อนและคุณภาพที่แชร์ต่อได้ คุณปฏิบัติ MLOps Academy ด้วยโค้ดที่ใช้งานได้จริงที่คุณเรียกใช้โดยตรงในเบราว์เซอร์ และติวเตอร์ AI ตลอด 24/7 ตอบคำถามของคุณขณะที่คุณไปผ่านบทเรียน

คุณต้องมีประสบการณ์ก่อนที่จะเริ่มเรียน MLOps Academy หรือไม่

ไม่จำเป็นต้องมีประสบการณ์มาก่อน MLOps Academy บน CoddyKit ออกแบบมาสำหรับผู้เริ่มต้นไปจนถึงผู้เรียนขั้นสูง คุณสามารถเริ่มต้นที่นี่หรือเริ่มจากตัวแรกและเรียนด้วยความเร็วของคุณเอง นี่คือบทเรียนที่ 3 จากทั้งหมด 4 บทเรียน

บทเรียน “สร้างรายงานการเคลื่อนด้วย Evidently” ใช้เวลานานแค่ไหน

บทเรียน CoddyKit ส่วนใหญ่ใช้เวลาประมาณ 5–10 นาที แต่ละบทเรียนจึงสั้นและเป็นแบบโต้ตอบ คุณสามารถก้าวหน้าอย่างต่อเนื่องและกลับมาเรียนต่อจากตรงที่เพิ่งหยุดบนเว็บและแอปได้เลย

ฉันเขียนและรันโค้ดในบทเรียน MLOps Academy นี้ได้ไหม

ได้ บทเรียน MLOps Academy ทุกบทมีตัวแก้ไขโค้ดในตัว คุณจึงเขียนและรันโค้ดจริงได้เลยในเบราว์เซอร์ และได้รับข้อเสนอแนะจาก AI ในทันที — ไม่ต้องติดตั้งในเครื่องของคุณ

บทเรียนทั้งหมดในหลักสูตรนี้

  1. ข้อมูลเคลื่อนกับแนวคิดเคลื่อน
  2. วัดการเคลื่อนด้วย PSI และ KS
  3. สร้างรายงานการเคลื่อนด้วย Evidently
  4. กำหนดค่าขีดจำกัดและตัวกระตุ้นการเคลื่อน
← กลับไปที่ MLOps Academy