CoolFace
Apppublic

rishithayanidhi/datacenter-cooling-optimization

sourceHugging Faceupdated 6mo agoView on Hugging Face
0likes
my_env_environment.py21 linesDownload Raw Back to server
1# Copyright (c) Meta Platforms, Inc. and affiliates.2# All rights reserved.3#4# This source code is licensed under the BSD-style license found in the5# LICENSE file in the root directory of this source tree.6 7"""8Data Center Cooling Optimization Environment Implementation.9 10This file is kept for backwards compatibility.11The actual implementation is in environment.py12"""13 14# Forward imports for backwards compatibility15from .environment import DataCenterCoolingEnvironment as DataCenterCoolingEnvironment16 17# Legacy name support18MyEnvironment = DataCenterCoolingEnvironment19 20__all__ = ["DataCenterCoolingEnvironment", "MyEnvironment"]21