"""Examples for PLAID objects."""# -*- coding: utf-8 -*-## This file is subject to the terms and conditions defined in# file 'LICENSE.txt', which is part of this source code package.##fromplaid.examples.configimport_HF_REPOS
__all__=["datasets","samples","AVAILABLE_EXAMPLES"]# Lazy imports to avoid circular dependencydef__getattr__(name):ifname=="datasets":fromplaid.examples.datasetimportdatasetsreturndatasetsifname=="samples":fromplaid.examples.sampleimportsamplesreturnsamplesraiseAttributeError(f"module {__name__} has no attribute {name}")