keras-io icon indicating copy to clipboard operation
keras-io copied to clipboard

Keras documentation, hosted live at keras.io

Results 302 keras-io issues
Sort by recently updated
recently updated
newest added
trafficstars

This can go over the solution of: https://github.com/keras-team/keras/issues/16234

stale
stat:contributions welcome
type:feature

The example in transformer_asr.py is really interesting, but it only shows how to train the model. Can someone give an example of inference is done with the model to get...

my input of customize dataset is (n, 600, 600, 3), i have tried resize before input to the modell, it works. But i still wonder, how can i input an...

I use ctc to train a ASR model, but the result value is ,the below is the result of keras.backend.ctc_decode(pred, input_length=input_len, greedy=True). what happend to my program?the log probability if...

Hi, Is the code 'collaborative_filtering_movielens.py' correctly implemented. I have replicated this code for same movie datasets. Seems like the prediction accuracy is close to 10%, while the loss is decreasing....

type:support

The "Last modified: 2022/02/29" is invalid. I suggest using "2022/02/28" as "Last modified".

ValueError Traceback (most recent call last) in 16 17 # Begin training the model. ---> 18 clustering_learner.fit(x=inputs, y=labels, batch_size=512, epochs=50) ~/.local/lib/python3.9/site-packages/keras/utils/traceback_utils.py in error_handler(*args, **kwargs) 65 except Exception as e: #...

This issue is about keras' (amazing, if i may add) [tutorial about the MelGAN audio synthesis network](https://keras.io/examples/audio/melgan_spectrogram_inversion/). In [line 387 and the following](https://github.com/keras-team/keras-io/blob/master/examples/audio/melgan_spectrogram_inversion.py) we define the generator's loss. ![grafik](https://user-images.githubusercontent.com/6853705/157840609-9d73dc29-ad5a-4738-9805-1c7481d2a609.png) Why...

[Code](https://github.com/keras-team/keras-io/blob/master/examples/nlp/text_classification_from_scratch.py) how to input a `string` instead of `preprocessing.text_dataset_from_directory`? I tried using strings from python and the numpy array - but alas, no luck. I tried to figure out what...

So I follow this tutorial https://github.com/keras-team/keras-io/blob/master/examples/audio/transformer_asr.py My question is how can I load the model and then predict it, like `model.predict(x)` where x is an audio file