Skip to content

Commit

Permalink
Fix copy-paste error, bump version to 0.9.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Dobiasd committed Aug 23, 2019
1 parent ae77e5f commit ba2dd26
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ list(APPEND CMAKE_MODULE_PATH "${FDEEP_TOP_DIR}/cmake")

include(cmake/hunter.cmake) # default off

project(frugally-deep VERSION 0.9.2)
project(frugally-deep VERSION 0.9.3)

message(STATUS "===( ${PROJECT_NAME} ${PROJECT_VERSION} )===")

Expand Down
2 changes: 1 addition & 1 deletion INSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ Just add a *conanfile.txt* with frugally-deep as a requirement and chose the gen

```
[requires]
frugally-deep/v0.9.2-p0@dobiasd/stable
frugally-deep/v0.9.3-p0@dobiasd/stable
[generators]
cmake
Expand Down
16 changes: 8 additions & 8 deletions include/fdeep/import_model.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -495,7 +495,7 @@ inline layer_ptr create_batch_normalization_layer(const get_param_f& get_param,
name, moving_mean, moving_variance, beta, gamma, epsilon);
}

inline layer_ptr create_linear_layer(
inline layer_ptr create_identity_layer(
const get_param_f&, const get_global_param_f&, const nlohmann::json&,
const std::string& name)
{
Expand Down Expand Up @@ -1079,13 +1079,13 @@ inline layer_ptr create_layer(const get_param_f& get_param,
{"DepthwiseConv2D", create_depthwise_conv_2D_layer},
{"InputLayer", create_input_layer},
{"BatchNormalization", create_batch_normalization_layer},
{"Dropout", create_linear_layer},
{"AlphaDropout", create_linear_layer},
{"GaussianDropout", create_linear_layer},
{"GaussianNoise", create_linear_layer},
{"SpatialDropout1D", create_linear_layer},
{"SpatialDropout2D", create_linear_layer},
{"SpatialDropout3D", create_linear_layer},
{"Dropout", create_identity_layer},
{"AlphaDropout", create_identity_layer},
{"GaussianDropout", create_identity_layer},
{"GaussianNoise", create_identity_layer},
{"SpatialDropout1D", create_identity_layer},
{"SpatialDropout2D", create_identity_layer},
{"SpatialDropout3D", create_identity_layer},
{"LeakyReLU", create_leaky_relu_layer_isolated},
{"Permute", create_permute_layer },
{"PReLU", create_prelu_layer },
Expand Down

0 comments on commit ba2dd26

Please sign in to comment.