chore: import upstream snapshot with attribution

This commit is contained in:
wehub-resource-sync
2026-07-13 13:38:23 +08:00
commit 2725b63d23
700 changed files with 53581 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
# What are the best toy datasets to help visualize and understand classifier behavior?
The visualization part is a bit tricky since we as humans are limited to 1-3 D graphics. However, I'd still say Iris is one of the most useful toy datasets for looking at classifier behavior (see image below).
![](./clf-behavior-data/iris.png)
(I've implemented this simple function here if you are interested: [mlxtend plot_decision_regions](http://rasbt.github.io/mlxtend/user_guide/plotting/plot_decision_regions/).)
Other than that, I think that synthetic datasets like "XOR," "half-moons," or concentric circles would be good candidates for evaluating classifier on non-linear problems:
<hr>
![](./clf-behavior-data/xor.png)
<hr>
![](./clf-behavior-data/moons.png)
<hr>
![](./clf-behavior-data/circles.png)