forked from keras-team/keras-io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexamples_master.py
More file actions
1244 lines (1244 loc) · 51 KB
/
examples_master.py
File metadata and controls
1244 lines (1244 loc) · 51 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
EXAMPLES_MASTER = {
"path": "examples/",
"title": "Code examples",
"toc": False,
"children": [
{
"path": "vision/",
"title": "Computer Vision",
"toc": True,
"children": [
# Image classification
{
"path": "image_classification_from_scratch",
"title": "Image classification from scratch",
"subcategory": "Image classification",
"highlight": True,
"keras_3": True,
},
{
"path": "mnist_convnet",
"title": "Simple MNIST convnet",
"subcategory": "Image classification",
"highlight": True,
"keras_3": True,
},
{
"path": "image_classification_efficientnet_fine_tuning",
"title": "Image classification via fine-tuning with EfficientNet",
"subcategory": "Image classification",
"highlight": True,
"keras_3": True,
},
{
"path": "image_classification_with_vision_transformer",
"title": "Image classification with Vision Transformer",
"subcategory": "Image classification",
"keras_3": True,
},
{
"path": "attention_mil_classification",
"title": "Classification using Attention-based Deep Multiple Instance Learning",
"subcategory": "Image classification",
"keras_3": True,
},
{
"path": "mlp_image_classification",
"title": "Image classification with modern MLP models",
"subcategory": "Image classification",
"keras_3": True,
},
{
"path": "mobilevit",
"title": "A mobile-friendly Transformer-based model for image classification",
"subcategory": "Image classification",
"keras_3": True,
},
{
"path": "xray_classification_with_tpus",
"title": "Pneumonia Classification on TPU",
"subcategory": "Image classification",
"keras_3": True,
},
{
"path": "cct",
"title": "Compact Convolutional Transformers",
"subcategory": "Image classification",
"keras_3": True,
},
{
"path": "convmixer",
"title": "Image classification with ConvMixer",
"subcategory": "Image classification",
"keras_3": True,
},
{
"path": "eanet",
"title": "Image classification with EANet (External Attention Transformer)",
"subcategory": "Image classification",
"keras_3": True,
},
{
"path": "involution",
"title": "Involutional neural networks",
"subcategory": "Image classification",
"keras_3": True,
},
{
"path": "perceiver_image_classification",
"title": "Image classification with Perceiver",
"subcategory": "Image classification",
"keras_3": True,
},
{
"path": "reptile",
"title": "Few-Shot learning with Reptile",
"subcategory": "Image classification",
"keras_3": True,
},
{
"path": "semisupervised_simclr",
"title": "Semi-supervised image classification using contrastive pretraining with SimCLR",
"subcategory": "Image classification",
"keras_3": True,
},
{
"path": "swin_transformers",
"title": "Image classification with Swin Transformers",
"subcategory": "Image classification",
"keras_3": True,
},
{
"path": "vit_small_ds",
"title": "Train a Vision Transformer on small datasets",
"subcategory": "Image classification",
"keras_3": True,
},
{
"path": "shiftvit",
"title": "A Vision Transformer without Attention",
"subcategory": "Image classification",
"keras_3": True,
},
{
"path": "image_classification_using_global_context_vision_transformer",
"title": "Image Classification using Global Context Vision Transformer",
"subcategory": "Image classification",
"keras_3": True,
},
{
"path": "temporal_latent_bottleneck",
"title": "When Recurrence meets Transformers",
"subcategory": "Image classification",
"keras_3": True,
},
{
"path": "forwardforward",
"title": "Using the Forward-Forward Algorithm for Image Classification",
"subcategory": "Image classification",
"keras_3": True,
},
# Image segmentation
{
"path": "oxford_pets_image_segmentation",
"title": "Image segmentation with a U-Net-like architecture",
"subcategory": "Image segmentation",
"highlight": True,
"keras_3": True,
},
{
"path": "deeplabv3_plus",
"title": "Multiclass semantic segmentation using DeepLabV3+",
"subcategory": "Image segmentation",
"keras_3": True,
},
{
"path": "basnet_segmentation",
"title": "Highly accurate boundaries segmentation using BASNet",
"subcategory": "Image segmentation",
"keras_3": True,
},
{
"path": "fully_convolutional_network",
"title": "Image Segmentation using Composable Fully-Convolutional Networks",
"subcategory": "Image segmentation",
"keras_3": True,
},
# Object Detection
{
"path": "retinanet",
"title": "Object Detection with RetinaNet",
"subcategory": "Object detection",
"keras_2": True,
},
{
"path": "keypoint_detection",
"title": "Keypoint Detection with Transfer Learning",
"subcategory": "Object detection",
"keras_3": True,
},
{
"path": "object_detection_using_vision_transformer",
"title": "Object detection with Vision Transformers",
"subcategory": "Object detection",
"keras_3": True,
},
{
"path": "yolov8",
"title": "Efficient Object Detection with YOLOV8 and KerasCV",
"subcategory": "Object detection",
"keras_2": True,
},
# 3D
{
"path": "brain_tumor_segmentation",
"title": "3D Multimodal Brain Tumor Segmentation",
"subcategory": "3D",
"keras_3": True,
},
{
"path": "3D_image_classification",
"title": "3D image classification from CT scans",
"subcategory": "3D",
"keras_3": True,
},
{
"path": "depth_estimation",
"title": "Monocular depth estimation",
"subcategory": "3D",
"keras_3": True,
},
{
"path": "nerf",
"title": "3D volumetric rendering with NeRF",
"subcategory": "3D",
"keras_3": True,
"highlight": True,
},
{
"path": "pointnet_segmentation",
"title": "Point cloud segmentation with PointNet",
"subcategory": "3D",
"keras_3": True,
},
{
"path": "pointnet",
"title": "Point cloud classification",
"subcategory": "3D",
"keras_3": True,
},
# OCR
{
"path": "captcha_ocr",
"title": "OCR model for reading Captchas",
"subcategory": "OCR",
"keras_3": True,
},
{
"path": "handwriting_recognition",
"title": "Handwriting recognition",
"subcategory": "OCR",
"keras_3": True,
},
# Image enhancement
{
"path": "autoencoder",
"title": "Convolutional autoencoder for image denoising",
"subcategory": "Image enhancement",
"keras_3": True,
},
{
"path": "mirnet",
"title": "Low-light image enhancement using MIRNet",
"subcategory": "Image enhancement",
"keras_3": True,
},
{
"path": "super_resolution_sub_pixel",
"title": "Image Super-Resolution using an Efficient Sub-Pixel CNN",
"subcategory": "Image enhancement",
"keras_3": True,
},
{
"path": "edsr",
"title": "Enhanced Deep Residual Networks for single-image super-resolution",
"subcategory": "Image enhancement",
"keras_3": True,
},
{
"path": "zero_dce",
"title": "Zero-DCE for low-light image enhancement",
"subcategory": "Image enhancement",
"keras_3": True,
},
# Data augmentation
{
"path": "cutmix",
"title": "CutMix data augmentation for image classification",
"subcategory": "Data augmentation",
"keras_3": True,
},
{
"path": "mixup",
"title": "MixUp augmentation for image classification",
"subcategory": "Data augmentation",
"keras_3": True,
},
{
"path": "randaugment",
"title": "RandAugment for Image Classification for Improved Robustness",
"subcategory": "Data augmentation",
"keras_3": True,
},
# Image & Text
{
"path": "image_captioning",
"title": "Image captioning",
"subcategory": "Image & Text",
"highlight": True,
"keras_3": True,
},
{
"path": "nl_image_search",
"title": "Natural language image search with a Dual Encoder",
"subcategory": "Image & Text",
"keras_2": True,
},
# Vision models interpretability
{
"path": "visualizing_what_convnets_learn",
"title": "Visualizing what convnets learn",
"subcategory": "Vision models interpretability",
"keras_3": True,
},
{
"path": "integrated_gradients",
"title": "Model interpretability with Integrated Gradients",
"subcategory": "Vision models interpretability",
"keras_3": True,
},
{
"path": "probing_vits",
"title": "Investigating Vision Transformer representations",
"subcategory": "Vision models interpretability",
"keras_3": True,
},
{
"path": "grad_cam",
"title": "Grad-CAM class activation visualization",
"subcategory": "Vision models interpretability",
"keras_3": True,
},
# Image similarity search
{
"path": "near_dup_search",
"title": "Near-duplicate image search",
"subcategory": "Image similarity search",
"keras_2": True,
},
{
"path": "semantic_image_clustering",
"title": "Semantic Image Clustering",
"subcategory": "Image similarity search",
"keras_3": True,
},
{
"path": "siamese_contrastive",
"title": "Image similarity estimation using a Siamese Network with a contrastive loss",
"subcategory": "Image similarity search",
"keras_3": True,
},
{
"path": "siamese_network",
"title": "Image similarity estimation using a Siamese Network with a triplet loss",
"subcategory": "Image similarity search",
"keras_3": True,
},
{
"path": "metric_learning",
"title": "Metric learning for image similarity search",
"subcategory": "Image similarity search",
"keras_3": True,
},
{
"path": "metric_learning_tf_similarity",
"title": "Metric learning for image similarity search using TensorFlow Similarity",
"subcategory": "Image similarity search",
"keras_2": True,
},
{
"path": "nnclr",
"title": "Self-supervised contrastive learning with NNCLR",
"subcategory": "Image similarity search",
"keras_3": True,
},
{
"path": "simsiam",
"title": "Self-supervised contrastive learning with SimSiam",
"subcategory": "Image similarity search",
"keras_3": True,
},
# Video
{
"path": "video_classification",
"title": "Video Classification with a CNN-RNN Architecture",
"subcategory": "Video",
"keras_3": True,
},
{
"path": "conv_lstm",
"title": "Next-Frame Video Prediction with Convolutional LSTMs",
"subcategory": "Video",
"keras_3": True,
},
{
"path": "video_transformers",
"title": "Video Classification with Transformers",
"subcategory": "Video",
"keras_3": True,
},
{
"path": "vivit",
"title": "Video Vision Transformer",
"subcategory": "Video",
"keras_3": True,
},
{
"path": "bit",
"title": "Image Classification using BigTransfer (BiT)",
"subcategory": "Image classification",
"keras_3": True,
},
# Performance recipes
{
"path": "gradient_centralization",
"title": "Gradient Centralization for Better Training Performance",
"subcategory": "Performance recipes",
"keras_3": True,
},
{
"path": "token_learner",
"title": "Learning to tokenize in Vision Transformers",
"subcategory": "Performance recipes",
"keras_3": True,
},
{
"path": "knowledge_distillation",
"title": "Knowledge Distillation",
"subcategory": "Performance recipes",
"keras_3": True,
},
{
"path": "fixres",
"title": "FixRes: Fixing train-test resolution discrepancy",
"subcategory": "Performance recipes",
"keras_3": True,
},
{
"path": "cait",
"title": "Class Attention Image Transformers with LayerScale",
"subcategory": "Performance recipes",
"keras_3": True,
},
{
"path": "patch_convnet",
"title": "Augmenting convnets with aggregated attention",
"subcategory": "Performance recipes",
"keras_3": True,
},
{
"path": "learnable_resizer",
"title": "Learning to Resize",
"subcategory": "Performance recipes",
"keras_3": True,
},
{
"path": "adamatch",
"title": "Semi-supervision and domain adaptation with AdaMatch",
"subcategory": "Performance recipes",
"keras_2": True,
},
{
"path": "barlow_twins",
"title": "Barlow Twins for Contrastive SSL",
"subcategory": "Image similarity search",
"keras_2": True,
},
{
"path": "consistency_training",
"title": "Consistency training with supervision",
"subcategory": "Performance recipes",
"keras_2": True,
},
{
"path": "deit",
"title": "Distilling Vision Transformers",
"subcategory": "Performance recipes",
"keras_3": True,
},
{
"path": "focal_modulation_network",
"title": "Focal Modulation: A replacement for Self-Attention",
"subcategory": "Image classification",
"keras_3": True,
},
{
"path": "masked_image_modeling",
"title": "Masked image modeling with Autoencoders",
"subcategory": "Performance recipes",
"keras_2": True,
},
{
"path": "supervised-contrastive-learning",
"title": "Supervised Contrastive Learning",
"subcategory": "Performance recipes",
"keras_2": True,
},
],
},
{
"path": "nlp/",
"title": "Natural Language Processing",
"toc": True,
"children": [
# Text classification
{
"path": "text_classification_from_scratch",
"title": "Text classification from scratch",
"subcategory": "Text classification",
"highlight": True,
"keras_3": True,
},
{
"path": "active_learning_review_classification",
"title": "Review Classification using Active Learning",
"subcategory": "Text classification",
"keras_3": True,
},
{
"path": "fnet_classification_with_keras_hub",
"title": "Text Classification using FNet",
"subcategory": "Text classification",
"keras_3": True,
},
{
"path": "multi_label_classification",
"title": "Large-scale multi-label text classification",
"subcategory": "Text classification",
"keras_3": True,
},
{
"path": "text_classification_with_transformer",
"title": "Text classification with Transformer",
"subcategory": "Text classification",
"keras_3": True,
},
{
"path": "text_classification_with_switch_transformer",
"title": "Text classification with Switch Transformer",
"subcategory": "Text classification",
"keras_3": True,
},
{
"path": "tweet-classification-using-tfdf",
"title": "Text classification using Decision Forests and pretrained embeddings",
"subcategory": "Text classification",
"keras_2": True,
},
{
"path": "pretrained_word_embeddings",
"title": "Using pre-trained word embeddings",
"subcategory": "Text classification",
"keras_3": True,
},
{
"path": "bidirectional_lstm_imdb",
"title": "Bidirectional LSTM on IMDB",
"subcategory": "Text classification",
"keras_3": True,
},
{
"path": "data_parallel_training_with_keras_hub",
"title": "Data Parallel Training with KerasHub and tf.distribute",
"subcategory": "Text classification",
"keras_3": True,
},
{
"path": "multiple_choice_task_with_transfer_learning",
"title": "MultipleChoice Task with Transfer Learning",
"subcategory": "Text classification",
"keras_3": True,
},
# Machine translation
{
"path": "neural_machine_translation_with_keras_hub",
"title": "English-to-Spanish translation with KerasHub",
"subcategory": "Machine translation",
"keras_3": True,
},
{
"path": "neural_machine_translation_with_transformer",
"title": "English-to-Spanish translation with a sequence-to-sequence Transformer",
"subcategory": "Machine translation",
"highlight": True,
"keras_3": True,
},
{
"path": "lstm_seq2seq",
"title": "Character-level recurrent sequence-to-sequence model",
"subcategory": "Machine translation",
"keras_3": True,
},
# Entailement prediction
{
"path": "multimodal_entailment",
"title": "Multimodal entailment",
"subcategory": "Entailment prediction",
"keras_3": True,
},
# Named entity recognition
{
"path": "ner_transformers",
"title": "Named Entity Recognition using Transformers",
"subcategory": "Named entity recognition",
"keras_3": True,
},
# Sequence-to-sequence
{
"path": "text_extraction_with_bert",
"title": "Text Extraction with BERT",
"subcategory": "Sequence-to-sequence",
"keras_2": True,
},
{
"path": "addition_rnn",
"title": "Sequence to sequence learning for performing number addition",
"subcategory": "Sequence-to-sequence",
"keras_3": True,
},
# Text similarity search
{
"path": "semantic_similarity_with_keras_hub",
"title": "Semantic Similarity with KerasHub",
"subcategory": "Text similarity search",
"keras_3": True,
},
{
"path": "semantic_similarity_with_bert",
"title": "Semantic Similarity with BERT",
"subcategory": "Text similarity search",
"keras_3": True,
},
{
"path": "sentence_embeddings_with_sbert",
"title": "Sentence embeddings using Siamese RoBERTa-networks",
"subcategory": "Text similarity search",
"keras_3": True,
},
# Language modeling
{
"path": "masked_language_modeling",
"title": "End-to-end Masked Language Modeling with BERT",
"subcategory": "Language modeling",
"keras_3": True,
},
{
"path": "abstractive_summarization_with_bart",
"title": "Abstractive Text Summarization with BART",
"subcategory": "Language modeling",
"keras_3": True,
},
# Parameter efficient fine-tuning.
{
"path": "parameter_efficient_finetuning_of_gpt2_with_lora",
"title": "Parameter-efficient fine-tuning of GPT-2 with LoRA",
"subcategory": "Parameter efficient fine-tuning",
"keras_3": True,
},
# Remainder is autogenerated
],
},
{
"path": "structured_data/",
"title": "Structured Data",
"toc": True,
"children": [
{
"path": "structured_data_classification_with_feature_space",
"title": "Structured data classification with FeatureSpace",
"subcategory": "Structured data classification",
"highlight": True,
"keras_3": True,
},
{
"path": "feature_space_advanced",
"title": "FeatureSpace advanced use cases",
"subcategory": "Structured data classification",
"highlight": True,
"keras_3": True,
},
{
"path": "imbalanced_classification",
"title": "Imbalanced classification: credit card fraud detection",
"subcategory": "Structured data classification",
"highlight": True,
"keras_3": True,
},
{
"path": "structured_data_classification_from_scratch",
"title": "Structured data classification from scratch",
"subcategory": "Structured data classification",
"keras_3": True,
},
{
"path": "wide_deep_cross_networks",
"title": "Structured data learning with Wide, Deep, and Cross networks",
"subcategory": "Structured data classification",
"keras_3": True,
},
{
"path": "customer_lifetime_value",
"title": "Deep Learning for Customer Lifetime Value",
"subcategory": "Structured data regression",
"keras_3": True,
},
{
"path": "classification_with_grn_and_vsn",
"title": "Classification with Gated Residual and Variable Selection Networks",
"subcategory": "Structured data classification",
"keras_3": True,
},
{
"path": "classification_with_tfdf",
"title": "Classification with TensorFlow Decision Forests",
"subcategory": "Structured data classification",
"keras_2": True,
},
{
"path": "deep_neural_decision_forests",
"title": "Classification with Neural Decision Forests",
"subcategory": "Structured data classification",
"keras_3": True,
},
{
"path": "tabtransformer",
"title": "Structured data learning with TabTransformer",
"subcategory": "Structured data classification",
"keras_3": True,
},
{
"path": "class_with_grn_and_vsn_with_hyperparameters_tuning",
"title": "Classification with Gated Residual and Variable Selection Networks with HyperParameters tuning",
"subcategory": "Structured data classification",
"keras_3": True,
},
# Recommendation
{
"path": "collaborative_filtering_movielens",
"title": "Collaborative Filtering for Movie Recommendations",
"subcategory": "Recommendation",
"keras_3": True,
},
{
"path": "movielens_recommendations_transformers",
"title": "A Transformer-based recommendation system",
"subcategory": "Recommendation",
"keras_3": True,
},
],
},
{
"path": "timeseries/",
"title": "Timeseries",
"toc": True,
"children": [
# Timeseries classification
{
"path": "timeseries_classification_from_scratch",
"title": "Timeseries classification from scratch",
"subcategory": "Timeseries classification",
"highlight": True,
"keras_3": True,
},
{
"path": "timeseries_classification_transformer",
"title": "Timeseries classification with a Transformer model",
"subcategory": "Timeseries classification",
"keras_3": True,
},
{
"path": "eeg_signal_classification",
"title": "Electroencephalogram Signal Classification for action identification",
"subcategory": "Timeseries classification",
"keras_3": True,
},
{
"path": "event_classification_for_payment_card_fraud_detection",
"title": "Event classification for payment card fraud detection",
"subcategory": "Timeseries classification",
"keras_3": True,
},
{
"path": "eeg_bci_ssvepformer",
"title": "Electroencephalogram Signal Classification for Brain-Computer Interface",
"subcategory": "Timeseries classification",
"keras_3": True,
},
# Anomaly detection
{
"path": "timeseries_anomaly_detection",
"title": "Timeseries anomaly detection using an Autoencoder",
"subcategory": "Anomaly detection",
"keras_3": True,
},
# Timeseries forecasting
{
"path": "timeseries_traffic_forecasting",
"title": "Traffic forecasting using graph neural networks and LSTM",
"subcategory": "Timeseries forecasting",
"keras_3": True,
},
{
"path": "timeseries_weather_forecasting",
"title": "Timeseries forecasting for weather prediction",
"subcategory": "Timeseries forecasting",
"keras_3": True,
},
],
},
{
"path": "generative/",
"title": "Generative Deep Learning",
"toc": True,
"children": [
# Image generation
{
"path": "ddim",
"title": "Denoising Diffusion Implicit Models",
"subcategory": "Image generation",
"highlight": True,
"keras_3": True,
},
{
"path": "random_walks_with_stable_diffusion_3",
"title": "A walk through latent space with Stable Diffusion 3",
"subcategory": "Image generation",
"highlight": True,
"keras_3": True,
},
{
"path": "dreambooth",
"title": "DreamBooth",
"subcategory": "Image generation",
"keras_2": True,
},
{
"path": "ddpm",
"title": "Denoising Diffusion Probabilistic Models",
"subcategory": "Image generation",
"keras_2": True,
},
{
"path": "fine_tune_via_textual_inversion",
"title": "Teach StableDiffusion new concepts via Textual Inversion",
"subcategory": "Image generation",
"keras_2": True,
},
{
"path": "finetune_stable_diffusion",
"title": "Fine-tuning Stable Diffusion",
"subcategory": "Image generation",
"keras_2": True,
},
{
"path": "vae",
"title": "Variational AutoEncoder",
"subcategory": "Image generation",
"keras_3": True,
},
{
"path": "dcgan_overriding_train_step",
"title": "GAN overriding Model.train_step",
"subcategory": "Image generation",
"keras_3": True,
},
{
"path": "wgan_gp",
"title": "WGAN-GP overriding Model.train_step",
"subcategory": "Image generation",
"keras_3": True,
},
{
"path": "conditional_gan",
"title": "Conditional GAN",
"subcategory": "Image generation",
"keras_3": True,
},
{
"path": "cyclegan",
"title": "CycleGAN",
"subcategory": "Image generation",
"keras_3": True,
},
{
"path": "gan_ada",
"title": "Data-efficient GANs with Adaptive Discriminator Augmentation",
"subcategory": "Image generation",
"keras_3": True,
},
{
"path": "deep_dream",
"title": "Deep Dream",
"subcategory": "Image generation",
"keras_3": True,
},
{
"path": "gaugan",
"title": "GauGAN for conditional image generation",
"subcategory": "Image generation",
"keras_3": True,
},
{
"path": "pixelcnn",
"title": "PixelCNN",
"subcategory": "Image generation",
"keras_3": True,
},
{
"path": "stylegan",
"title": "Face image generation with StyleGAN",
"subcategory": "Image generation",
"keras_2": True,
},
{
"path": "vq_vae",
"title": "Vector-Quantized Variational Autoencoders",
"subcategory": "Image generation",
"keras_2": True,
},
{
"path": "random_walks_with_stable_diffusion",
"title": "A walk through latent space with Stable Diffusion",
"subcategory": "Image generation",
"keras_3": True,
},
# Style transfer
{
"path": "neural_style_transfer",
"title": "Neural style transfer",
"subcategory": "Style transfer",
"keras_3": True,
},
{
"path": "adain",
"title": "Neural Style Transfer with AdaIN",
"subcategory": "Style transfer",
"keras_2": True,
},
# Text generation
{
"path": "gpt2_text_generation_with_keras_hub",
"title": "GPT2 Text Generation with KerasHub",
"subcategory": "Text generation",
"highlight": True,
"keras_3": True,
},
{
"path": "text_generation_gpt",
"title": "GPT text generation from scratch with KerasHub",
"subcategory": "Text generation",
"keras_3": True,
},
{
"path": "text_generation_with_miniature_gpt",
"title": "Text generation with a miniature GPT",
"subcategory": "Text generation",
"keras_3": True,
},
{
"path": "lstm_character_level_text_generation",
"title": "Character-level text generation with LSTM",
"subcategory": "Text generation",
"keras_3": True,
},
{
"path": "text_generation_fnet",
"title": "Text Generation using FNet",
"subcategory": "Text generation",
"keras_2": True,
},
# Audio / midi generation
{
"path": "midi_generation_with_transformer",
"title": "Music Generation with Transformer Models",
"subcategory": "Audio generation",
"keras_3": True,
},
# Graph generation
{
"path": "molecule_generation",
"title": "Drug Molecule Generation with VAE",
"subcategory": "Graph generation",
"keras_3": True,
},
# Density estimation
{
"path": "real_nvp",
"title": "Density estimation using Real NVP",
"subcategory": "Density estimation",
"keras_2": True,
},
{
"path": "wgan-graphs",
"title": "WGAN-GP with R-GCN for the generation of small molecular graphs",
"subcategory": "Graph generation",
"keras_2": True,
},
],
},
{
"path": "audio/",