Skip to content

InceptionTime blocks incorrectly implemented #2

@RossDeVito

Description

@RossDeVito

The general flow of data for an inception block is:

input data -> bottleneck -> [filters of different sizes] -> output

In your implementation, the filters of different sizes are applied sequentially like this:

input data -> bottleneck -> filter_size_a -> filter_size_b -> filter_size_c  -> output

In the actual implementation the flow is something like the following.

input data -> bottleneck -> { -> filter_size_a ->         } -> concat-> output
                                -> filter_size_b ->
                                -> filter_size_c ->
                                -> max_pool_filter ->

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type
    No fields configured for issues without a type.

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions