forked from keras-team/keras-io
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
41 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
# Call for code example contributions | ||
|
||
This is a constantly-updated list of code examples that we're currently interested in. | ||
|
||
## Timeseries forecasting with LSTM for weather prediction | ||
|
||
Recommendations: | ||
|
||
- Use `timeseries_dataset_from_array` for data processing | ||
- Single LSTM layer + classification layer, trained with `fit()` | ||
- Add nice visualizations | ||
|
||
|
||
## StyleGAN / StyleGAN2 | ||
|
||
[Reference paper 1](https://arxiv.org/abs/1812.04948) [2](https://arxiv.org/abs/1912.04958) | ||
[Reference TF implementation](https://github.com/NVlabs/stylegan2) | ||
|
||
|
||
## End-to-end OCR | ||
|
||
[Old Keras example](https://github.com/keras-team/keras/blob/master/examples/image_ocr.py) | ||
|
||
Recommendations: | ||
|
||
- Use CTC loss | ||
- Can use either Transformer model or recurrent model (whichever works best) | ||
|
||
|
||
|
||
## Improve next-frame prediction with ConvLSTM | ||
|
||
[Current example](https://keras.io/examples/vision/conv_lstm/) | ||
|
||
Recommendations: | ||
|
||
- Find a better, more interesting dataset | ||
- Make it work better | ||
- Add detailed explanations |