In the Keras source code, I saw the following:
from ..engine import Layer
I wonder if it's the same as the following:
from ../engine import Layer
In the Keras source code, I saw the following:
from ..engine import Layer
I wonder if it's the same as the following:
from ../engine import Layer
Acording to this article, it's from relative imports:
Guido has Pronounced that relative imports will use leading dots. A single leading dot indicates a relative import, starting with the current package. Two or more leading dots give a relative import to the parent(s) of the current package, one level per dot after the first. Here's a sample package layout: