Songlin Wei commited on
Commit
71bfc48
·
1 Parent(s): 3c927a3

upload all

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
Files changed (50) hide show
  1. load_demo.py +209 -0
  2. train/000000_materials.000000.tar +3 -0
  3. train/000001_materials.000000.tar +3 -0
  4. train/000002_materials.000000.tar +3 -0
  5. train/000003_materials.000000.tar +3 -0
  6. train/000004_materials.000000.tar +3 -0
  7. train/000005_materials.000000.tar +3 -0
  8. train/000006_materials.000000.tar +3 -0
  9. train/000007_materials.000000.tar +3 -0
  10. train/000008_materials.000000.tar +3 -0
  11. train/000009_materials.000000.tar +3 -0
  12. train/000010_materials.000000.tar +3 -0
  13. train/000011_materials.000000.tar +3 -0
  14. train/000012_materials.000000.tar +3 -0
  15. train/000013_materials.000000.tar +3 -0
  16. train/000014_materials.000000.tar +3 -0
  17. train/000015_materials.000000.tar +3 -0
  18. train/000016_materials.000000.tar +3 -0
  19. train/000017_materials.000000.tar +3 -0
  20. train/000018_materials.000000.tar +3 -0
  21. train/000019_materials.000000.tar +3 -0
  22. train/000020_materials.000000.tar +3 -0
  23. train/000021_materials.000000.tar +3 -0
  24. train/000022_materials.000000.tar +3 -0
  25. train/000023_materials.000000.tar +3 -0
  26. train/000024_materials.000000.tar +3 -0
  27. train/000025_materials.000000.tar +3 -0
  28. train/000026_materials.000000.tar +3 -0
  29. train/000027_materials.000000.tar +3 -0
  30. train/000028_materials.000000.tar +3 -0
  31. train/000029_materials.000000.tar +3 -0
  32. train/000030_materials.000000.tar +3 -0
  33. train/000031_materials.000000.tar +3 -0
  34. train/000032_materials.000000.tar +3 -0
  35. train/000033_materials.000000.tar +3 -0
  36. train/000034_materials.000000.tar +3 -0
  37. train/000035_materials.000000.tar +3 -0
  38. train/000036_materials.000000.tar +3 -0
  39. train/000037_materials.000000.tar +3 -0
  40. train/000038_materials.000000.tar +3 -0
  41. train/000039_materials.000000.tar +3 -0
  42. train/000040_materials.000000.tar +3 -0
  43. train/000041_materials.000000.tar +3 -0
  44. train/000042_materials.000000.tar +3 -0
  45. train/000043_materials.000000.tar +3 -0
  46. train/000044_materials.000000.tar +3 -0
  47. train/000045_materials.000000.tar +3 -0
  48. train/000046_materials.000000.tar +3 -0
  49. train/000047_materials.000000.tar +3 -0
  50. train/000048_materials.000000.tar +3 -0
load_demo.py ADDED
@@ -0,0 +1,209 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+
3
+ from os.path import dirname, join
4
+ import webdataset as wds
5
+ from PIL import Image
6
+ import io
7
+ import json
8
+ import numpy as np
9
+ import argparse
10
+ import matplotlib
11
+ import matplotlib.pyplot as plt
12
+ import os
13
+ try:
14
+ import imageio
15
+ HAS_IMAGEIO = True
16
+ except ImportError:
17
+ HAS_IMAGEIO = False
18
+ try:
19
+ import cv2
20
+ HAS_CV2 = True
21
+ except ImportError:
22
+ HAS_CV2 = False
23
+
24
+
25
+
26
+
27
+ def dump_video(image_seq, output_path, fps=30, codec='libx264', quality=8):
28
+ """
29
+ Dump a sequence of PIL Images to a video file.
30
+
31
+ Args:
32
+ image_seq: List of PIL Images
33
+ output_path: Output video file path (e.g., 'output.mp4')
34
+ fps: Frames per second (default: 30)
35
+ codec: Video codec (default: 'libx264')
36
+ quality: Video quality, 0-10, higher is better (default: 8)
37
+ """
38
+ if not image_seq:
39
+ print("Warning: Empty image sequence, skipping video dump")
40
+ return
41
+
42
+ if HAS_IMAGEIO:
43
+ # Use imageio (simpler API)
44
+ frames = []
45
+ for img in image_seq:
46
+ # Convert PIL Image to numpy array
47
+ frames.append(np.array(img))
48
+
49
+ # Write video
50
+ # imageio v2 uses mimwrite, v3 uses get_writer
51
+ try:
52
+ # Try imageio v2 API
53
+ imageio.mimwrite(output_path, frames, fps=fps, codec=codec, quality=quality)
54
+ except (AttributeError, TypeError):
55
+ # Fallback for imageio v3
56
+ try:
57
+ writer = imageio.get_writer(output_path, fps=fps, codec=codec)
58
+ for frame in frames:
59
+ writer.append_data(frame)
60
+ writer.close()
61
+ except Exception:
62
+ # Final fallback without codec
63
+ writer = imageio.get_writer(output_path, fps=fps)
64
+ for frame in frames:
65
+ writer.append_data(frame)
66
+ writer.close()
67
+ print(f"Video saved to {output_path} using imageio")
68
+
69
+ elif HAS_CV2:
70
+ # Use OpenCV as fallback
71
+ if not image_seq:
72
+ return
73
+
74
+ # Get image dimensions
75
+ first_img = image_seq[0]
76
+ height, width = first_img.size[1], first_img.size[0]
77
+
78
+ # Define codec and create VideoWriter
79
+ fourcc = cv2.VideoWriter_fourcc(*codec if len(codec) == 4 else 'mp4v')
80
+ out = cv2.VideoWriter(output_path, fourcc, fps, (width, height))
81
+
82
+ for img in image_seq:
83
+ # Convert PIL Image to numpy array (RGB -> BGR for OpenCV)
84
+ img_array = np.array(img)
85
+ if len(img_array.shape) == 3:
86
+ if img_array.shape[2] == 3:
87
+ img_array = cv2.cvtColor(img_array, cv2.COLOR_RGB2BGR)
88
+ elif img_array.shape[2] == 4:
89
+ img_array = cv2.cvtColor(img_array, cv2.COLOR_RGBA2BGR)
90
+ out.write(img_array)
91
+
92
+ out.release()
93
+ print(f"Video saved to {output_path} using OpenCV")
94
+
95
+ else:
96
+ raise ImportError("Neither imageio nor cv2 is available. Please install one: pip install imageio[ffmpeg] or pip install opencv-python")
97
+
98
+
99
+ # Parse 16bit depth to actual depth values
100
+ def parse_depth_16bit(depth_image: Image.Image, max_depth: float) -> np.ndarray:
101
+ """Parse 16-bit depth image back to actual depth values."""
102
+ # Convert PIL image to numpy array
103
+ depth_array = np.array(depth_image, dtype=np.uint16)
104
+
105
+ # Normalize to [0, 1] and multiply by max_depth to get actual depth
106
+ depth_normalized = depth_array.astype(np.float32) / 65535.0
107
+ actual_depth = depth_normalized * max_depth
108
+
109
+ return actual_depth
110
+
111
+
112
+
113
+
114
+ def colorize_depth_map(depth, mask=None, reverse_color=False):
115
+ from decord import VideoReader,cpu
116
+
117
+ cm = matplotlib.colormaps["Spectral"]
118
+
119
+ # colorize
120
+ if reverse_color:
121
+ img_colored_np = cm(1 - depth, bytes=False)[:, :, 0:3] # Invert the depth values before applying colormap
122
+ else:
123
+ img_colored_np = cm(depth, bytes=False)[:, :, 0:3] # (h,w,3)
124
+
125
+ depth_colored = (img_colored_np * 255).astype(np.uint8)
126
+ # if mask is not None:
127
+ # masked_image = np.zeros_like(depth_colored)
128
+ # masked_image[mask.numpy()] = depth_colored[mask.numpy()]
129
+ # depth_colored_img = Image.fromarray(masked_image)
130
+ # else:
131
+ depth_colored_img = Image.fromarray(depth_colored)
132
+ return depth_colored_img
133
+
134
+
135
+ if __name__ == '__main__':
136
+
137
+ args = argparse.ArgumentParser()
138
+ args.add_argument('--data_path', type=str, default='data/TransPhy3D/parametric_train/training/0_materials.000000.tar')
139
+ args.add_argument('--output_path', type=str, default='output')
140
+ args = args.parse_args()
141
+
142
+ os.makedirs(args.output_path, exist_ok=True)
143
+
144
+ # Use WebDataset's built-in verification
145
+ dataset = wds.WebDataset(args.data_path)
146
+ data = {}
147
+
148
+ depth_seq_raw = [] # Store raw 16bit depth images
149
+ depth_max_values = [] # Store max_depth for each frame
150
+ normal_seq = []
151
+ rgbs_seq = []
152
+ meta_info =[]
153
+
154
+ # First pass: load all data including 16bit depth
155
+ for sample in dataset:
156
+ depth_img = None
157
+ max_depth = None
158
+ for key, value in sample.items():
159
+ # Ensure value is bytes-like
160
+ if not isinstance(value, (bytes, bytearray)):
161
+ continue
162
+
163
+ # Match exact key names or check file extension
164
+ if key == 'depth.png':
165
+ # Load 16bit depth image
166
+ depth_img = Image.open(io.BytesIO(value))
167
+ elif key == 'depth.json':
168
+ # Load max_depth value
169
+ depth_info = json.loads(value)
170
+ max_depth = depth_info.get('max_depth', None)
171
+ elif key == 'normal.png':
172
+ img = Image.open(io.BytesIO(value))
173
+ normal_seq.append(img)
174
+ elif key == 'image.png':
175
+ img = Image.open(io.BytesIO(value))
176
+ rgbs_seq.append(img)
177
+ elif key.endswith('.json'):
178
+ meta_info.append(json.loads(value))
179
+
180
+ # Store depth data if both image and max_depth are available
181
+ if depth_img is not None:
182
+ depth_seq_raw.append(depth_img)
183
+ depth_max_values.append(max_depth)
184
+
185
+
186
+
187
+ #* depth processing
188
+ depth_seq_vis = []
189
+ for depth_img, max_depth in zip(depth_seq_raw, depth_max_values):
190
+ if max_depth is not None:
191
+ # Parse 16bit depth to actual depth values
192
+ #* show how to convert to original depth unit
193
+ actual_depth = parse_depth_16bit(depth_img, max_depth)
194
+
195
+ # Normalize for visualization (0-255)
196
+ depth_normalized = actual_depth / max_depth # [0, 1]
197
+ depth_colored_img = colorize_depth_map(depth_normalized)
198
+
199
+ depth_seq_vis.append(depth_colored_img)
200
+ else:
201
+ # Fallback: use raw depth image if max_depth not available
202
+ depth_seq_vis.append(depth_img.convert('L'))
203
+
204
+
205
+
206
+ dump_video(rgbs_seq, join(args.output_path, 'output_rgb.mp4'), fps=30)
207
+ dump_video(normal_seq, join(args.output_path, 'output_normal.mp4'), fps=30)
208
+ dump_video(depth_seq_vis, join(args.output_path, 'output_depth.mp4'), fps=30)
209
+
train/000000_materials.000000.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9590b2b351b1ce05644afb1b49ae5c0a337d4b5ae571f51130d9abb8cd4eb69a
3
+ size 76298240
train/000001_materials.000000.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:33f388686e1d657141929545677311a0fa7e99ea1b1d2a0b020bf9128d3cef48
3
+ size 82503680
train/000002_materials.000000.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5b8fec3cea46507c9b738c1476f6a8dd7f697d5e09e5e3c4384c6f278bc896b3
3
+ size 100679680
train/000003_materials.000000.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:142f0918c808126448f58d46028bcb8e09627340d2da0b3af95164e713522eda
3
+ size 80445440
train/000004_materials.000000.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9119bfadf75a5037bcb9830789253280b568344d44616bde7dc9c7ca8719ad85
3
+ size 68843520
train/000005_materials.000000.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3e042a2eb3512abd1d637677198a1db07091823f8da9906654cad35dd6a3b72e
3
+ size 70492160
train/000006_materials.000000.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f1a72666ab82d3f8ad7cb5e2b11438541cd321784edc4e61ff12d91156fb43b0
3
+ size 86538240
train/000007_materials.000000.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9ac2e161483d9aae9e471b13404d08d9f32a6ac9380de199f97d18939be434ba
3
+ size 88586240
train/000008_materials.000000.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ebc0326b8febe1a36f8104f4e08e45123f77fc699917cb79c87aa3df9e217872
3
+ size 123351040
train/000009_materials.000000.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:720fb015f72b216c451988b40094641418b70c279d40ce3a06afe693ed7f4881
3
+ size 57702400
train/000010_materials.000000.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2dfa4d186a1a1bd6920113d43807cd7157c93a3ca0f43dc7341542659b9b3847
3
+ size 72130560
train/000011_materials.000000.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0124c17a3486d58df09907902404bc1b950f325863066191d62f4d31ccc0def1
3
+ size 104202240
train/000012_materials.000000.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bbfadb249b283bace086b77a4f82d7a084f141332bd05e566feb57fbe115f3fb
3
+ size 87121920
train/000013_materials.000000.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:be709bb130d5f28805bce09f5237d0a8a97a3e46d8aeee77a3cd41d8d89f1f65
3
+ size 61450240
train/000014_materials.000000.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a7c597ed6b9b5c477b0c4d2f518fd3f3461f4869416af0f5d4be21317f9cbb2e
3
+ size 88524800
train/000015_materials.000000.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2102dbb070dfc0566d590f24c992dd9ce6200dd8b8e823e37130415dfb6edcd7
3
+ size 100925440
train/000016_materials.000000.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a706ad2fe8c5d2214e56ee20b3fad5c715d280cfbbd42a00bfb88e26becb3697
3
+ size 99502080
train/000017_materials.000000.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e0a4b9aaac980ae4da430824aea3cad2293c4e580f9f30db494bb8d30ccf97a6
3
+ size 62955520
train/000018_materials.000000.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:98de4387e01d9920ef54b214ecf58b0d33670ab19d5d5e471769efb820b189b6
3
+ size 89989120
train/000019_materials.000000.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:960c2cc34db857c8b7f506a90cb32b7a2d6f8b478ac192da2da7c5e68a304eaa
3
+ size 98478080
train/000020_materials.000000.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:864b25285c31b5ded84c9760315970bc76ef41615e6938cd7a7830d21930545b
3
+ size 79298560
train/000021_materials.000000.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:70b468b355a136e18ece6119f2b68eb136e9b8a1abfbfd9da6b7af916741fa0c
3
+ size 85555200
train/000022_materials.000000.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1906acb4c9e1a5090ab1ad2ff20070c20da3baea6896279e1f8a4754772d0c37
3
+ size 74598400
train/000023_materials.000000.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:063a144b0543f77295f0d1963f24a622bbbebe708a733518cc776a135bd94acd
3
+ size 77066240
train/000024_materials.000000.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b2e03d224e2762a5e255888385825f882d44cbad5f904d000faf2668b5fd5381
3
+ size 81817600
train/000025_materials.000000.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:143d3d64a1041925f084454333e7d2751955ca0f1ebc1710045164981d0bddec
3
+ size 113131520
train/000026_materials.000000.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:738903c6361ddffa36241e06bd34aaccfd1fd89fe2f98b4c2f86e0a8498556d2
3
+ size 85370880
train/000027_materials.000000.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b06303d8bd2d4177deed7e70fa2d64fc6a55393a616f529f25bfc570a170619c
3
+ size 86149120
train/000028_materials.000000.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:52d17e4478e84e396dfc386e5cbd0b287b57a852f51534b7e950b725478814a1
3
+ size 119336960
train/000029_materials.000000.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1c33319faf8bb15bd97e05e5913b881c4ddb7ed7dcd1aea3e62884c232e922f1
3
+ size 87244800
train/000030_materials.000000.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:00a0e686eb8c2906e7b919ef705feba468d7672e9cba680316bfa96dab895ae4
3
+ size 55685120
train/000031_materials.000000.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:962ef1999a807462c41a9e216178488c9e721109760a4190c5576087f438c91f
3
+ size 100290560
train/000032_materials.000000.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ed7e7412ea11eefd17e947b2c661ac37bbb6a49494de7a25063b4323e0bbb95d
3
+ size 105256960
train/000033_materials.000000.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a654b6fdd66f99e007a7a58f19bd3cb2afde4404c143f4dc3c64fcc6d11bf552
3
+ size 80762880
train/000034_materials.000000.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d2fa6e8ac6b7d95c54248a419aa7167e0399d44540a553972c56c24ae6afda0a
3
+ size 39874560
train/000035_materials.000000.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6e1aa5461c72c70a7bd29dac6cc993acfd6265135a59c3dfc9265bf71541ce79
3
+ size 104704000
train/000036_materials.000000.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e92d36112c85cbb26e0b11ab6c933e2aff90df1ffb5da412ea33ffcc2d9400f9
3
+ size 131788800
train/000037_materials.000000.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f4d4690cca826bd3db183e47c588bc1f902f1eadc67eb76d42544e49ea636a42
3
+ size 114821120
train/000038_materials.000000.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d24b359565bcec4c6698952d60cfd9703a2c1322a3484b886ebcc6b32445ecb3
3
+ size 69416960
train/000039_materials.000000.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:477e8d953091c6baf375fd6d3be6cc9a747ec00b73f23dd614a3bde746ee0ca6
3
+ size 99481600
train/000040_materials.000000.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e4301e088354b9de69fc5da9a18d6e0cefbcdb765e41b9c453daf5d19d1365b0
3
+ size 99594240
train/000041_materials.000000.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fa1272ca6a97cafcd4afd8b61798e4b4245e022db085e0fb72482b3c1406ee68
3
+ size 98723840
train/000042_materials.000000.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:caa5671c87936da02aa5bf6965aba6c3bc9fbeb622131ce823ea1b196866d6de
3
+ size 114493440
train/000043_materials.000000.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:62a75210bb05d25a44d37fd849cc06f0d15ac8c4f9742b821e6ade4ea9c013da
3
+ size 94136320
train/000044_materials.000000.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cab0687275736f6fd9ccaa5656a2fce36581cc4842e5e968c838d13f440bc037
3
+ size 102287360
train/000045_materials.000000.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:84e14fc59787a1688f458abc7f13e290d6026b367a3ca924966e1153124319f0
3
+ size 120545280
train/000046_materials.000000.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5812fcfa8a3d5b054d72a0052cb7fc7d18d440c835cd5ac89cde04ee6ba9091a
3
+ size 108902400
train/000047_materials.000000.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:52b8bc84b3df28b6a8ad4827dfb5c2314c9df1c5c5f27b0ee5a417d75f05840e
3
+ size 120504320
train/000048_materials.000000.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:94e2efe6a50760fbd525b6d4cee90de10e75629119d39f9aac4ee1ccc95005e4
3
+ size 104243200