Giter Site home page Giter Site logo

radio-wave-classifier's People

Contributors

lukerbs avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

radio-wave-classifier's Issues

ValueError: None values not supported.

Just posting this error and solution in case it impacts anyone else. In the resnet.ipynb code, you have:

adm = keras.optimizers.Adam(lr=0.0001, beta_1=0.9, beta_2=0.999, epsilon=None, decay=0.0, amsgrad=False)

Which causes ValueError: None values not supported, as explained here

changing it to the following line fixed it for me.

adm = keras.optimizers.Adam(lr=0.0001, beta_1=0.9, beta_2=0.999)

Thanks for providing the blog post and code!

HDF5 to NPY

Hi Luke!
In your article on Medium https://medium.com/gsi-technology/residual-neural-networks-in-python-1796a57c2d7 you mentioned:
"The original dataset from Deepsig.io comes in .hdf5 format. I converted the data to .npy format since I found it took much less time to load. The signals are divided into training, testing, and validation data. Here are links to a small and large dataset of labeled signals:
Download Link: Dataset (9.1GB)
"

Can you @lukerbs update a download link for Dataset or send a script to convert data?

I read your article Radio Wave Classifier in Python

I read your article Radio Wave Classifier in Python
I download link to the weights for the model that I your trained
I load the provided weights and try testing out some signal examples
Use the test data you provided singals_dataset / test / signals.npy
but the accuracy: 60.66%

Part of the code is as follows
model=load_model('weights.hdf5')
model.summary();
x_test = np.load(path + 'signals.npy')
y_test = np.load(path + 'labels.npy')
score = model.evaluate(x_test, y_test, batch_size=1024)
print("%s: %.2f%%" % (model.metrics_names[1], score[1]*100))

Is there something wrong with me?

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.