Triangles: 794
Vertices: 505
More model informationfrom meshgpt_pytorch import mesh_render text_coords = [] rows = [] transformer.eval()
for text in [ ‘bed’, ‘sofa’, ‘monitor’, ‘bench’, ‘chair’, ‘table’] : print(“Generating “, text) face_coords = transformer.generate(texts = [text] , temperature = 0.0) text_coords.append(face_coords)
rows.append(text_coords) mesh_render.combind_mesh_with_rows(f’./rows.obj’, rows)
Jun 6th 2024
Comments