├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── datasets ├── booking_queries_dataset.csv ├── code_review_dataset.csv └── health_and_fitness_qna.csv ├── events ├── 202307_launch_event_demo_bikes.ipynb ├── 202308_community_call_bikes.ipynb ├── 202308_demo_bikes_for_flyte.ipynb ├── 20250310_rag_testing.ipynb ├── 20250806_Nebius_academy.pdf ├── 20250924_llm_evals_emeli_for_oxford.ipynb ├── Nebius_Academy_Content_Generation_Evals.ipynb ├── README.md └── bicycle_demand_testing.ipynb ├── examples ├── README.md ├── comparing_custom_statest_with_classic_distributions.ipynb ├── default_stattest_adult.ipynb └── how_to_run_drift_report_for_text_data.ipynb ├── integrations └── README.md ├── learn ├── LLMCourse_Adversarial_Testing.ipynb ├── LLMCourse_Agent_Evals.ipynb ├── LLMCourse_Classification_Evals.ipynb ├── LLMCourse_Content_Generation_Evals.ipynb ├── LLMCourse_RAG_Evals.ipynb ├── LLMCourse_Tutorial_1_Intro_to_LLM_evals_methods.ipynb ├── LLMCourse_Tutorial_2_LLM_as_a_judge.ipynb └── README.md └── tutorials ├── How_to_add_a_custom_text_descriptor.ipynb ├── How_to_create_an_ML_model_card.ipynb ├── How_to_run_regression_testing_for_LLMs.ipynb ├── How_to_track_regression_testing_results.ipynb ├── LLM_as_a_judge_tutorial.ipynb ├── LLM_as_a_judge_tutorial_updated.ipynb ├── LLM_as_a_jury_Example.ipynb ├── NLP_monitoring_tutorial.ipynb ├── README.md ├── Regression_testing_with_debugging.ipynb ├── Regression_testing_with_debugging_updated.ipynb ├── bicycle_demand_monitoring.ipynb ├── bicycle_demand_monitoring_setup.ipynb ├── ibm_hr_attrition_model_validation.ipynb ├── local_content_generation.ipynb └── rag_metrics.ipynb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evidentlyai/community-examples/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evidentlyai/community-examples/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evidentlyai/community-examples/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evidentlyai/community-examples/HEAD/README.md -------------------------------------------------------------------------------- /datasets/booking_queries_dataset.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evidentlyai/community-examples/HEAD/datasets/booking_queries_dataset.csv -------------------------------------------------------------------------------- /datasets/code_review_dataset.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evidentlyai/community-examples/HEAD/datasets/code_review_dataset.csv -------------------------------------------------------------------------------- /datasets/health_and_fitness_qna.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evidentlyai/community-examples/HEAD/datasets/health_and_fitness_qna.csv -------------------------------------------------------------------------------- /events/202307_launch_event_demo_bikes.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evidentlyai/community-examples/HEAD/events/202307_launch_event_demo_bikes.ipynb -------------------------------------------------------------------------------- /events/202308_community_call_bikes.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evidentlyai/community-examples/HEAD/events/202308_community_call_bikes.ipynb -------------------------------------------------------------------------------- /events/202308_demo_bikes_for_flyte.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evidentlyai/community-examples/HEAD/events/202308_demo_bikes_for_flyte.ipynb -------------------------------------------------------------------------------- /events/20250310_rag_testing.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evidentlyai/community-examples/HEAD/events/20250310_rag_testing.ipynb -------------------------------------------------------------------------------- /events/20250806_Nebius_academy.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evidentlyai/community-examples/HEAD/events/20250806_Nebius_academy.pdf -------------------------------------------------------------------------------- /events/20250924_llm_evals_emeli_for_oxford.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evidentlyai/community-examples/HEAD/events/20250924_llm_evals_emeli_for_oxford.ipynb -------------------------------------------------------------------------------- /events/Nebius_Academy_Content_Generation_Evals.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evidentlyai/community-examples/HEAD/events/Nebius_Academy_Content_Generation_Evals.ipynb -------------------------------------------------------------------------------- /events/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evidentlyai/community-examples/HEAD/events/README.md -------------------------------------------------------------------------------- /events/bicycle_demand_testing.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evidentlyai/community-examples/HEAD/events/bicycle_demand_testing.ipynb -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evidentlyai/community-examples/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/comparing_custom_statest_with_classic_distributions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evidentlyai/community-examples/HEAD/examples/comparing_custom_statest_with_classic_distributions.ipynb -------------------------------------------------------------------------------- /examples/default_stattest_adult.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evidentlyai/community-examples/HEAD/examples/default_stattest_adult.ipynb -------------------------------------------------------------------------------- /examples/how_to_run_drift_report_for_text_data.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evidentlyai/community-examples/HEAD/examples/how_to_run_drift_report_for_text_data.ipynb -------------------------------------------------------------------------------- /integrations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evidentlyai/community-examples/HEAD/integrations/README.md -------------------------------------------------------------------------------- /learn/LLMCourse_Adversarial_Testing.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evidentlyai/community-examples/HEAD/learn/LLMCourse_Adversarial_Testing.ipynb -------------------------------------------------------------------------------- /learn/LLMCourse_Agent_Evals.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evidentlyai/community-examples/HEAD/learn/LLMCourse_Agent_Evals.ipynb -------------------------------------------------------------------------------- /learn/LLMCourse_Classification_Evals.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evidentlyai/community-examples/HEAD/learn/LLMCourse_Classification_Evals.ipynb -------------------------------------------------------------------------------- /learn/LLMCourse_Content_Generation_Evals.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evidentlyai/community-examples/HEAD/learn/LLMCourse_Content_Generation_Evals.ipynb -------------------------------------------------------------------------------- /learn/LLMCourse_RAG_Evals.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evidentlyai/community-examples/HEAD/learn/LLMCourse_RAG_Evals.ipynb -------------------------------------------------------------------------------- /learn/LLMCourse_Tutorial_1_Intro_to_LLM_evals_methods.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evidentlyai/community-examples/HEAD/learn/LLMCourse_Tutorial_1_Intro_to_LLM_evals_methods.ipynb -------------------------------------------------------------------------------- /learn/LLMCourse_Tutorial_2_LLM_as_a_judge.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evidentlyai/community-examples/HEAD/learn/LLMCourse_Tutorial_2_LLM_as_a_judge.ipynb -------------------------------------------------------------------------------- /learn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evidentlyai/community-examples/HEAD/learn/README.md -------------------------------------------------------------------------------- /tutorials/How_to_add_a_custom_text_descriptor.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evidentlyai/community-examples/HEAD/tutorials/How_to_add_a_custom_text_descriptor.ipynb -------------------------------------------------------------------------------- /tutorials/How_to_create_an_ML_model_card.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evidentlyai/community-examples/HEAD/tutorials/How_to_create_an_ML_model_card.ipynb -------------------------------------------------------------------------------- /tutorials/How_to_run_regression_testing_for_LLMs.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evidentlyai/community-examples/HEAD/tutorials/How_to_run_regression_testing_for_LLMs.ipynb -------------------------------------------------------------------------------- /tutorials/How_to_track_regression_testing_results.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evidentlyai/community-examples/HEAD/tutorials/How_to_track_regression_testing_results.ipynb -------------------------------------------------------------------------------- /tutorials/LLM_as_a_judge_tutorial.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evidentlyai/community-examples/HEAD/tutorials/LLM_as_a_judge_tutorial.ipynb -------------------------------------------------------------------------------- /tutorials/LLM_as_a_judge_tutorial_updated.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evidentlyai/community-examples/HEAD/tutorials/LLM_as_a_judge_tutorial_updated.ipynb -------------------------------------------------------------------------------- /tutorials/LLM_as_a_jury_Example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evidentlyai/community-examples/HEAD/tutorials/LLM_as_a_jury_Example.ipynb -------------------------------------------------------------------------------- /tutorials/NLP_monitoring_tutorial.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evidentlyai/community-examples/HEAD/tutorials/NLP_monitoring_tutorial.ipynb -------------------------------------------------------------------------------- /tutorials/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evidentlyai/community-examples/HEAD/tutorials/README.md -------------------------------------------------------------------------------- /tutorials/Regression_testing_with_debugging.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evidentlyai/community-examples/HEAD/tutorials/Regression_testing_with_debugging.ipynb -------------------------------------------------------------------------------- /tutorials/Regression_testing_with_debugging_updated.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evidentlyai/community-examples/HEAD/tutorials/Regression_testing_with_debugging_updated.ipynb -------------------------------------------------------------------------------- /tutorials/bicycle_demand_monitoring.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evidentlyai/community-examples/HEAD/tutorials/bicycle_demand_monitoring.ipynb -------------------------------------------------------------------------------- /tutorials/bicycle_demand_monitoring_setup.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evidentlyai/community-examples/HEAD/tutorials/bicycle_demand_monitoring_setup.ipynb -------------------------------------------------------------------------------- /tutorials/ibm_hr_attrition_model_validation.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evidentlyai/community-examples/HEAD/tutorials/ibm_hr_attrition_model_validation.ipynb -------------------------------------------------------------------------------- /tutorials/local_content_generation.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evidentlyai/community-examples/HEAD/tutorials/local_content_generation.ipynb -------------------------------------------------------------------------------- /tutorials/rag_metrics.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evidentlyai/community-examples/HEAD/tutorials/rag_metrics.ipynb --------------------------------------------------------------------------------