mirror of
https://github.com/azaion/ai-training.git
synced 2026-04-22 21:56:36 +00:00
2fa864018f
switch to yolov11
5 lines
172 B
Python
5 lines
172 B
Python
class Dotdict(dict):
|
|
"""dot.notation access to dictionary attributes"""
|
|
__getattr__ = dict.get
|
|
__setattr__ = dict.__setitem__
|
|
__delattr__ = dict.__delitem__ |