vae-fdm / src /neural_fdm /__init__.py
Efradeca's picture
Upload folder using huggingface_hub
fc7d689 verified
raw
history blame contribute delete
459 Bytes
"""Neural FDM: Differentiable form-finding with neural networks for architectural structures."""
import os
__version__ = "1.1.0"
HERE = os.path.dirname(__file__)
HOME = os.path.abspath(os.path.join(HERE, "../../"))
DATA = os.path.abspath(os.path.join(HOME, "data"))
FIGURES = os.path.abspath(os.path.join(HOME, "figures"))
SCRIPTS = os.path.abspath(os.path.join(HOME, "scripts"))
__all__ = [
"__version__",
"DATA",
"FIGURES",
"SCRIPTS",
]