We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8c2c3d1 commit fbe7845Copy full SHA for fbe7845
web_app/web_app.py
@@ -54,4 +54,18 @@
54
upsampling = st.checkbox('Yes', True)
55
st.subheader('Output Format')
56
format_name = ['HDF5', 'NPZ', 'Rendered Video']
57
- format = st.radio('Select the output format for the generated events', format_name)
+ format = st.radio('Select the output format for the generated events', format_name)
58
+
59
+ class Sequence:
60
+ #def __init__(self):
61
+ #normalize = transforms.Normalize(mean=mean, std=std)
62
+ #self.transform = transforms.Compose([transforms.ToTensor(), normalize])
63
64
+ def __iter__(self):
65
+ return self
66
67
+ def __next__(self):
68
+ raise NotImplementedError
69
70
+ def __len__(self):
71
0 commit comments