NORLIE JHON MALAGDAO commited on
Commit
8c91acc
·
verified ·
1 Parent(s): a868649

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -0
app.py CHANGED
@@ -27,6 +27,11 @@ import zipfile
27
 
28
  import pathlib
29
 
 
 
 
 
 
30
 
31
  # Ensure that these imports are at the beginning of your script to avoid any NameError issues.
32
 
 
27
 
28
  import pathlib
29
 
30
+ class PyDataset(tf.keras.utils.data_utils.Dataset):
31
+ def __init__(self, **kwargs):
32
+ super().__init__(**kwargs)
33
+
34
+
35
 
36
  # Ensure that these imports are at the beginning of your script to avoid any NameError issues.
37