python dict keys to list
refer to example code
..
dictionary = {"a": 1, "b": 2, "c": 3}
key_iterable = dictionary.keys()
key_list = list(key_iterable)
print(key_list)
..
www.marearts.com
Thank you. 🙇🏻♂️
The study blog from marearts.com
Computer Vision & Machine Learning Research Laboratory
refer to example code
..
..
www.marearts.com
Thank you. 🙇🏻♂️
Get all pdf file list in s3 bucket.
Change extension file name properly.
..
..
other code for search bucket + subfolder
..
..
www.marearts.com
thank you.
🙇🏻♂️
flatten -> unflatten
..
..
input shape: torch.Size([10, 1, 256, 256]) reshape or flatten: torch.Size([10, 65536]) unflatten: torch.Size([10, 1, 256, 256])
Thank you.
🙇🏻♂️