4 коротких видео объясняющих суть Q-learning - метода машинного обучения с подкреплением.
Показаны сообщения с ярлыком video. Показать все сообщения
Показаны сообщения с ярлыком video. Показать все сообщения
понедельник, 9 октября 2017 г.
вторник, 14 января 2014 г.
Metaclasses in Python (talk on SF Python)
Interesting talk by Jess Hamrick that helps to put in order knowledge about metaclasses
In questions there was one interesting note about how methods in Python are stored.
So, after instantiating class, every function becomes a method.
Method of class is object (everything is object in Python :) ) that is callable and has special useful attributes (not all listed here):
In questions there was one interesting note about how methods in Python are stored.
So, after instantiating class, every function becomes a method.
Method of class is object (everything is object in Python :) ) that is callable and has special useful attributes (not all listed here):
- im_func is the function object - it's actually original function
- im_self is the class instance object
- im_class is the class of im_self
Подписаться на:
Сообщения
(
Atom
)