I'm new to machine learning and Python.
I have been using Keras for a project.
The first argument of almost all attributes of Model
is self
.
For example:
fit(self, x=None, y=None, batch_size=None, epochs=1, verbose=1, callbacks=None, validation_split=0.0, validation_data=None, shuffle=True, class_weight=None, sample_weight=None, initial_epoch=0, steps_per_epoch=None, validation_steps=None)
Can someone please tell me what this self
refers to?