Skip to content

Commit 5c17a7f

Browse files
committedMar 1, 2017
Add file metadata
1 parent 83c0bd0 commit 5c17a7f

10 files changed

+73
-0
lines changed
 

‎.idea/dictionaries/atcold.xml

+3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎data/VideoFolder.py

+8
Original file line numberDiff line numberDiff line change
@@ -268,3 +268,11 @@ def _tile_up(temporal_batch):
268268
if __name__ == '__main__':
269269
_test_video_folder()
270270
_test_data_loader()
271+
272+
273+
__author__ = "Alfredo Canziani"
274+
__credits__ = ["Alfredo Canziani"]
275+
__maintainer__ = "Alfredo Canziani"
276+
__email__ = "alfredo.canziani@gmail.com"
277+
__status__ = "Production" # "Prototype", "Development", or "Production"
278+
__date__ = "Feb 17"

‎data/resize_and_split.sh

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
################################################################################
2+
# Pre-process video data
3+
################################################################################
4+
# Alfredo Canziani, Feb 17
5+
################################################################################
6+
17
# Pre-process video data
28
#
39
# - resize video data minor side to specific size

‎main.py

+8
Original file line numberDiff line numberDiff line change
@@ -244,3 +244,11 @@ def repackage_state(h):
244244

245245
if __name__ == '__main__':
246246
main()
247+
248+
249+
__author__ = "Alfredo Canziani"
250+
__credits__ = ["Alfredo Canziani"]
251+
__maintainer__ = "Alfredo Canziani"
252+
__email__ = "alfredo.canziani@gmail.com"
253+
__status__ = "Development" # "Prototype", "Development", or "Production"
254+
__date__ = "Feb 17"

‎model/ConvLSTMCell.py

+8
Original file line numberDiff line numberDiff line change
@@ -111,3 +111,11 @@ def _main():
111111

112112
if __name__ == '__main__':
113113
_main()
114+
115+
116+
__author__ = "Alfredo Canziani"
117+
__credits__ = ["Alfredo Canziani"]
118+
__maintainer__ = "Alfredo Canziani"
119+
__email__ = "alfredo.canziani@gmail.com"
120+
__status__ = "Prototype" # "Prototype", "Development", or "Production"
121+
__date__ = "Jan 17"

‎model/DiscriminativeCell.py

+8
Original file line numberDiff line numberDiff line change
@@ -79,3 +79,11 @@ def _test_layers():
7979

8080
if __name__ == '__main__':
8181
_test_layers()
82+
83+
84+
__author__ = "Alfredo Canziani"
85+
__credits__ = ["Alfredo Canziani"]
86+
__maintainer__ = "Alfredo Canziani"
87+
__email__ = "alfredo.canziani@gmail.com"
88+
__status__ = "Prototype" # "Prototype", "Development", or "Production"
89+
__date__ = "Feb 17"

‎model/GenerativeCell.py

+8
Original file line numberDiff line numberDiff line change
@@ -80,3 +80,11 @@ def _test_layers():
8080

8181
if __name__ == '__main__':
8282
_test_layers()
83+
84+
85+
__author__ = "Alfredo Canziani"
86+
__credits__ = ["Alfredo Canziani"]
87+
__maintainer__ = "Alfredo Canziani"
88+
__email__ = "alfredo.canziani@gmail.com"
89+
__status__ = "Prototype" # "Prototype", "Development", or "Production"
90+
__date__ = "Feb 17"

‎model/Model01.py

+8
Original file line numberDiff line numberDiff line change
@@ -174,3 +174,11 @@ def _test_training():
174174
if __name__ == '__main__':
175175
_test_model()
176176
_test_training()
177+
178+
179+
__author__ = "Alfredo Canziani"
180+
__credits__ = ["Alfredo Canziani"]
181+
__maintainer__ = "Alfredo Canziani"
182+
__email__ = "alfredo.canziani@gmail.com"
183+
__status__ = "Production" # "Prototype", "Development", or "Production"
184+
__date__ = "Feb 17"

‎model/PrednetModel.py

+8
Original file line numberDiff line numberDiff line change
@@ -242,3 +242,11 @@ def _main():
242242

243243
if __name__ == '__main__':
244244
_main()
245+
246+
247+
__author__ = "Alfredo Canziani"
248+
__credits__ = ["Alfredo Canziani"]
249+
__maintainer__ = "Alfredo Canziani"
250+
__email__ = "alfredo.canziani@gmail.com"
251+
__status__ = "Prototype" # "Prototype", "Development", or "Production"
252+
__date__ = "Feb 17"

‎utils/visualise.py

+8
Original file line numberDiff line numberDiff line change
@@ -38,3 +38,11 @@ def show_graph(root):
3838
subprocess.call(('open', pdf_file_name))
3939
elif sys.platform == 'linux':
4040
subprocess.call(('xdg-open', pdf_file_name))
41+
42+
43+
__author__ = "Sergey Zagoruyko and Alfredo Canziani"
44+
__credits__ = ["Sergey Zagoruyko", "Alfredo Canziani"]
45+
__maintainer__ = "Alfredo Canziani"
46+
__email__ = "alfredo.canziani@gmail.com"
47+
__status__ = "Production" # "Prototype", "Development", or "Production"
48+
__date__ = "Feb 17"

0 commit comments

Comments
 (0)
Please sign in to comment.