This is a constantly-updated list of code examples that we're currently interested in.
Recommendations:
- Use
timeseries_dataset_from_array
for data processing - Single LSTM layer + classification layer, trained with
fit()
- Add nice visualizations
Reference TF/Keras implementation
Reference paper 1 2 Reference TF implementation
Recommendations:
- Find a better, more interesting dataset
- Make it work better
- Add detailed explanations
- As of 6/23/20, this is being worked on. See issue #112
Example TF2/Keras implementation
Example TF2/Keras implementation
Using word bi-grams + TF-IDF + a small MLP, from raw text strings.
The tokenization and extraction of TF-IDF ngrams should be done with the TextVectorization
layer.
The dataset should have at least 50k samples and there should be at least a dozen of labels.
Using a dataset of CT scans (a few are available on Kaggle).
The model should use Conv3D
layers.