Skip to content

Commit f3a7a03

Browse files
committed
Version 0.6.6
1 parent 4c46ed3 commit f3a7a03

File tree

2 files changed

+26
-9
lines changed

2 files changed

+26
-9
lines changed

examples/sample_notebooks/evidently_metric_presets.ipynb

Lines changed: 25 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
},
1010
{
1111
"cell_type": "code",
12-
"execution_count": 7,
12+
"execution_count": null,
1313
"metadata": {},
1414
"outputs": [],
1515
"source": [
@@ -21,7 +21,7 @@
2121
},
2222
{
2323
"cell_type": "code",
24-
"execution_count": 9,
24+
"execution_count": null,
2525
"metadata": {
2626
"scrolled": true
2727
},
@@ -50,7 +50,7 @@
5050
},
5151
{
5252
"cell_type": "code",
53-
"execution_count": 8,
53+
"execution_count": null,
5454
"metadata": {},
5555
"outputs": [],
5656
"source": [
@@ -66,7 +66,7 @@
6666
},
6767
{
6868
"cell_type": "code",
69-
"execution_count": 6,
69+
"execution_count": null,
7070
"metadata": {},
7171
"outputs": [],
7272
"source": [
@@ -83,7 +83,7 @@
8383
},
8484
{
8585
"cell_type": "code",
86-
"execution_count": 5,
86+
"execution_count": null,
8787
"metadata": {},
8888
"outputs": [],
8989
"source": [
@@ -250,7 +250,9 @@
250250
{
251251
"cell_type": "code",
252252
"execution_count": null,
253-
"metadata": {},
253+
"metadata": {
254+
"scrolled": true
255+
},
254256
"outputs": [],
255257
"source": [
256258
"regression_performance_report = Report(metrics=[\n",
@@ -261,6 +263,21 @@
261263
"regression_performance_report"
262264
]
263265
},
266+
{
267+
"cell_type": "code",
268+
"execution_count": null,
269+
"metadata": {},
270+
"outputs": [],
271+
"source": [
272+
"classification_performance_report = Report(metrics=[\n",
273+
" ClassificationPreset(),\n",
274+
"])\n",
275+
"\n",
276+
"classification_performance_report.run(reference_data=iris_ref, current_data=iris_cur)\n",
277+
"\n",
278+
"classification_performance_report"
279+
]
280+
},
264281
{
265282
"cell_type": "code",
266283
"execution_count": null,
@@ -357,9 +374,9 @@
357374
"name": "python",
358375
"nbconvert_exporter": "python",
359376
"pygments_lexer": "ipython3",
360-
"version": "3.10.8"
377+
"version": "3.11.4"
361378
}
362379
},
363380
"nbformat": 4,
364-
"nbformat_minor": 1
381+
"nbformat_minor": 4
365382
}

src/evidently/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env python
22
# coding: utf-8
33

4-
version_info = (0, 6, 5)
4+
version_info = (0, 6, 6)
55
__version__ = ".".join(map(str, version_info))
66

77

0 commit comments

Comments
 (0)