Instructions to use zeyuren2002/EvalMDE with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use zeyuren2002/EvalMDE with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("zeyuren2002/EvalMDE", dtype=torch.bfloat16, device_map="cuda") prompt = "Astronaut in a jungle, cold color palette, muted colors, detailed, 8k" image = pipe(prompt).images[0] - Notebooks
- Google Colab
- Kaggle
| # Copyright 2023-2025 Marigold Team, ETH Zürich. All rights reserved. | |
| # | |
| # Licensed under the Apache License, Version 2.0 (the "License"); | |
| # you may not use this file except in compliance with the License. | |
| # You may obtain a copy of the License at | |
| # | |
| # http://www.apache.org/licenses/LICENSE-2.0 | |
| # | |
| # Unless required by applicable law or agreed to in writing, software | |
| # distributed under the License is distributed on an "AS IS" BASIS, | |
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
| # See the License for the specific language governing permissions and | |
| # limitations under the License. | |
| # -------------------------------------------------------------------------- | |
| # More information about Marigold: | |
| # https://marigoldmonodepth.github.io | |
| # https://marigoldcomputervision.github.io | |
| # Efficient inference pipelines are now part of diffusers: | |
| # https://huggingface.co/docs/diffusers/using-diffusers/marigold_usage | |
| # https://huggingface.co/docs/diffusers/api/pipelines/marigold | |
| # Examples of trained models and live demos: | |
| # https://huggingface.co/prs-eth | |
| # Related projects: | |
| # https://rollingdepth.github.io/ | |
| # https://marigolddepthcompletion.github.io/ | |
| # Citation (BibTeX): | |
| # https://github.com/prs-eth/Marigold#-citation | |
| # If you find Marigold useful, we kindly ask you to cite our papers. | |
| # -------------------------------------------------------------------------- | |
| import os | |
| from typing import Union, List | |
| from .base_depth_dataset import ( | |
| BaseDepthDataset, | |
| get_pred_name, # noqa: F401 | |
| DatasetMode, | |
| ) # noqa: F401 | |
| from .base_iid_dataset import BaseIIDDataset # noqa: F401 | |
| from .base_normals_dataset import BaseNormalsDataset # noqa: F401 | |
| from .diode_dataset import DIODEDepthDataset, DIODENormalsDataset | |
| from .eth3d_dataset import ETH3DDepthDataset | |
| from .hypersim_dataset import ( | |
| HypersimDepthDataset, | |
| HypersimNormalsDataset, | |
| HypersimIIDDataset, | |
| ) | |
| from .ibims_dataset import IBimsNormalsDataset | |
| from .interiorverse_dataset import InteriorVerseNormalsDataset, InteriorVerseIIDDataset | |
| from .kitti_dataset import KITTIDepthDataset | |
| from .nyu_dataset import NYUDepthDataset, NYUNormalsDataset | |
| from .oasis_dataset import OasisNormalsDataset | |
| from .scannet_dataset import ScanNetDepthDataset, ScanNetNormalsDataset | |
| from .sintel_dataset import SintelNormalsDataset | |
| from .vkitti_dataset import VirtualKITTIDepthDataset | |
| dataset_name_class_dict = { | |
| "hypersim_depth": HypersimDepthDataset, | |
| "vkitti_depth": VirtualKITTIDepthDataset, | |
| "nyu_depth": NYUDepthDataset, | |
| "kitti_depth": KITTIDepthDataset, | |
| "eth3d_depth": ETH3DDepthDataset, | |
| "diode_depth": DIODEDepthDataset, | |
| "scannet_depth": ScanNetDepthDataset, | |
| "hypersim_normals": HypersimNormalsDataset, | |
| "interiorverse_normals": InteriorVerseNormalsDataset, | |
| "sintel_normals": SintelNormalsDataset, | |
| "ibims_normals": IBimsNormalsDataset, | |
| "nyu_normals": NYUNormalsDataset, | |
| "scannet_normals": ScanNetNormalsDataset, | |
| "diode_normals": DIODENormalsDataset, | |
| "oasis_normals": OasisNormalsDataset, | |
| "interiorverse_iid": InteriorVerseIIDDataset, | |
| "hypersim_iid": HypersimIIDDataset, | |
| } | |
| def get_dataset( | |
| cfg_data_split, base_data_dir: str, mode: DatasetMode, **kwargs | |
| ) -> Union[ | |
| BaseDepthDataset, | |
| BaseIIDDataset, | |
| BaseNormalsDataset, | |
| List[BaseDepthDataset], | |
| List[BaseIIDDataset], | |
| List[BaseNormalsDataset], | |
| ]: | |
| if "mixed" == cfg_data_split.name: | |
| assert DatasetMode.TRAIN == mode, "Only training mode supports mixed datasets." | |
| dataset_ls = [ | |
| get_dataset(_cfg, base_data_dir, mode, **kwargs) | |
| for _cfg in cfg_data_split.dataset_list | |
| ] | |
| return dataset_ls | |
| elif cfg_data_split.name in dataset_name_class_dict.keys(): | |
| dataset_class = dataset_name_class_dict[cfg_data_split.name] | |
| dataset = dataset_class( | |
| mode=mode, | |
| filename_ls_path=cfg_data_split.filenames, | |
| dataset_dir=os.path.join(base_data_dir, cfg_data_split.dir), | |
| **cfg_data_split, | |
| **kwargs, | |
| ) | |
| else: | |
| raise NotImplementedError | |
| return dataset | |