Skip to content

how to concat multi layers? #138

@BackT0TheFuture

Description

@BackT0TheFuture

Hi,
It's great work you made.
I came across one problem, python code looks like below

flatten = mx.symbol.Flatten(data=relu3)
fc1 = mx.symbol.FullyConnected(data=flatten, num_hidden=512)
fc21 = mx.symbol.FullyConnected(data=fc1, num_hidden=11)
fc22 = mx.symbol.FullyConnected(data=fc1, num_hidden=11)
fc23 = mx.symbol.FullyConnected(data=fc1, num_hidden=11)
fc24 = mx.symbol.FullyConnected(data=fc1, num_hidden=11)
fc2 = mx.symbol.Concat(*[fc21, fc22, fc23, fc24], dim=0)
label = mx.symbol.transpose(data=label)
label = mx.symbol.Reshape(data=label, target_shape=(0, ))
mx.symbol.SoftmaxOutput(data=fc2, label=label, name="softmax")  

Is it possible to implement this using ConvNetSharp?
thanks!

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions