Browsing index pages (2 articles)
↧
Concat OP in Tensorflow2.0.0
I tried to use Tensorflow2.0 to implement some deep learning alogrithms. However, the problem i met seems weried. It's a dimension problem when concating tensors The source code is right here import...
View ArticleAnswer by zihaozhihao for Concat OP in Tensorflow2.0.0
When you define the Model, you use a list as inputs. Why not also feed numpy inputs using a list? The following code works for me. i = np.random.randn(1, 224, 224, 6).astype(np.float32) c1 =...
View Article
Browsing index pages (2 articles)