I found out that sklearn.utils.Bunch
and dict
work more or less the same. Like if there is a dict
object say
JavaScript
x
2
1
dict_1 = {"a":1, "b":2}
2
and a bunch object say bunch
JavaScript
1
2
1
bunch_1 = Bunch(a=1, b=2)
2
both have the same set of behaviour.
Advertisement
Answer
Bunch is a subclass of the Dict class and supports all the methods as dict does. In addition, it allows you to use the keys as attributes.
JavaScript
1
6
1
b = Bunch(a=1, b=2)
2
>>> b['b']
3
2
4
>>> b.b
5
2
6