|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
'''---compulsory---''' |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
import hoho; hoho.setup() |
|
import subprocess |
|
import importlib |
|
from pathlib import Path |
|
import subprocess |
|
|
|
|
|
|
|
def install_package_from_local_file(package_name, folder='packages'): |
|
""" |
|
Installs a package from a local .whl file or a directory containing .whl files using pip. |
|
|
|
Parameters: |
|
path_to_file_or_directory (str): The path to the .whl file or the directory containing .whl files. |
|
""" |
|
try: |
|
pth = str(Path(folder) / package_name) |
|
subprocess.check_call([subprocess.sys.executable, "-m", "pip", "install", |
|
"--no-index", |
|
"--find-links", pth, |
|
package_name]) |
|
print(f"Package installed successfully from {pth}") |
|
except subprocess.CalledProcessError as e: |
|
print(f"Failed to install package from {pth}. Error: {e}") |
|
|
|
|
|
|
|
|
|
|
|
|
|
install_package_from_local_file('scikit-learn') |
|
|
|
|
|
|
|
|
|
|
|
import webdataset as wds |
|
from tqdm import tqdm |
|
from typing import Dict |
|
import pandas as pd |
|
from transformers import AutoTokenizer |
|
import os |
|
import time |
|
import io |
|
from PIL import Image as PImage |
|
import numpy as np |
|
|
|
from hoho.read_write_colmap import read_cameras_binary, read_images_binary, read_points3D_binary |
|
from hoho import proc, Sample |
|
|
|
def convert_entry_to_human_readable(entry): |
|
out = {} |
|
already_good = ['__key__', 'wf_vertices', 'wf_edges', 'edge_semantics', 'mesh_vertices', 'mesh_faces', 'face_semantics', 'K', 'R', 't'] |
|
for k, v in entry.items(): |
|
if k in already_good: |
|
out[k] = v |
|
continue |
|
if k == 'points3d': |
|
out[k] = read_points3D_binary(fid=io.BytesIO(v)) |
|
if k == 'cameras': |
|
out[k] = read_cameras_binary(fid=io.BytesIO(v)) |
|
if k == 'images': |
|
out[k] = read_images_binary(fid=io.BytesIO(v)) |
|
if k in ['ade20k', 'gestalt']: |
|
out[k] = [PImage.open(io.BytesIO(x)).convert('RGB') for x in v] |
|
if k == 'depthcm': |
|
out[k] = [PImage.open(io.BytesIO(x)) for x in entry['depthcm']] |
|
return out |
|
|
|
'''---end of compulsory---''' |
|
|
|
|
|
|
|
from pathlib import Path |
|
def save_submission(submission, path): |
|
""" |
|
Saves the submission to a specified path. |
|
|
|
Parameters: |
|
submission (List[Dict[]]): The submission to save. |
|
path (str): The path to save the submission to. |
|
""" |
|
sub = pd.DataFrame(submission, columns=["__key__", "wf_vertices", "wf_edges"]) |
|
sub.to_parquet(path) |
|
print(f"Submission saved to {path}") |
|
batch_size = 48 |
|
|
|
|
|
def batch_generator(dataset, batch_size): |
|
batch = [] |
|
for i, sample in enumerate(dataset): |
|
batch.append(sample) |
|
if len(batch) == batch_size: |
|
yield batch |
|
batch = [] |
|
if batch: |
|
yield batch |
|
if __name__ == "__main__": |
|
from handcrafted_solution import predict |
|
print ("------------ Loading dataset------------ ") |
|
params = hoho.get_params() |
|
dataset = hoho.get_dataset(decode=None, split='all', dataset_type='webdataset') |
|
|
|
print('------------ Now you can do your solution ---------------') |
|
solution = [] |
|
from concurrent.futures import ProcessPoolExecutor |
|
with ProcessPoolExecutor(max_workers=8) as pool: |
|
for batch in tqdm(batch_generator(dataset, batch_size), desc='Batches'): |
|
results = [] |
|
for i, sample in enumerate(batch): |
|
results.append(pool.submit(predict, sample, |
|
point_radius=50, |
|
max_angle=4, |
|
extend=25, |
|
merge_th=80.0, |
|
min_missing_distance=1000.0, |
|
scale_estimation_coefficient=2.54, |
|
clustering_eps=150, |
|
interpolation_radius=10000, |
|
point_radius_scale=0.5, |
|
|
|
pointcloud_depth_coeff=1.005, |
|
)) |
|
|
|
for result in tqdm(results, desc='Results', total=len(results), position=0): |
|
key, pred_vertices, pred_edges = result.result() |
|
solution.append({ |
|
'__key__': key, |
|
'wf_vertices': pred_vertices.tolist(), |
|
'wf_edges': pred_edges |
|
}) |
|
if i % 100 == 0: |
|
|
|
print(f"Processed {i} samples") |
|
|
|
print('------------ Saving results ---------------') |
|
save_submission(solution, Path(params['output_path']) / "submission.parquet") |
|
print("------------ Done ------------ ") |
|
|