GithubHelp home page GithubHelp logo

max-97 / rbf_for_tf2 Goto Github PK

View Code? Open in Web Editor NEW

This project forked from petravidnerova/rbf_for_tf2

0.0 1.0 0.0 29 KB

RBF Layer for tf.keras using Tensorflow 2.0 (work in progress!)

License: MIT License

Python 100.00%

rbf_for_tf2's Introduction

rbf_for_tf2

Author: Petra Vidnerová, The Czech Academy of Sciences, Institute of Computer Science

RBF layer for Tensorflow 2.0 (as custom layer derived from tf.keras.layers.Layer)

You need rbflayer.py to use RBF layers in your code. See test.py for very simple examples.

Feel free to use or modify the code.

Requirements:

Tensorflow, Scikit-learn, optionally Matplotlib (only for the toy example in test.py)

Usage:

  # creating RBF network
  rbflayer = RBFLayer(10,
                      initializer=InitCentersRandom(X),
                      betas=2.0,
                      input_shape=(num_inputs,))

  model = Sequential()
  model.add(rbflayer)
  model.add(Dense(n_outputs, use_bias=False))

or using KMeans clustering for RBF centers

  # creating RBFLayer with centers found by KMeans clustering
  rbflayer = RBFLayer(10,
                      initializer=InitCentersKMeans(X),
                      betas=2.0,
                      input_shape=(num_inputs,))

If you need any other setup of centers or widhts, you can very easily define your own initializer, just write your subclass of tensorflow.keras.initializers.Initializer.

Because you have created Keras model with a custom layer, you need to take it into account if you need to save it to file and load it. Saving is no problem:

model.save("some_fency_file_name.h5")

but while loading you have to specify your custom object RBFLayer:

rbfnet = load_model("some_fency_file_name.h5", custom_objects={'RBFLayer': RBFLayer})

You can also load weights (centers or widhts) from file (.npy file with an numpy array of the right shape), see IntFromFile in initializer.py and example in test.py.

See also:

Old repo that was written in 2017 for Keras.

Contact:

If you need help, do not hesitate to contact me via [email protected] or write an Issue.

How to cite:

In case you use this RBF layer for any experiments that result in publication, please consider citing it. Thanks ❤️

Vidnerová, Petra. RBF-Keras: an RBF Layer for Keras Library. 2019. Available at https://github.com/PetraVidnerova/rbf_keras

Thanks to the author of the very first citation: Lukas Brausch, et al. Towards a wearable low-cost ultrasound device for classification of muscle activity and muscle fatigue. 2019 doi:10.1145/3341163.3347749

Acknowledgement:

This work was partially supported by the Czech Grant Agency grant 18-23827S and institutional support of the Institute of Computer Science RVO 67985807.

rbf_for_tf2's People

Contributors

mvidner avatar petravidnerova avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.