OpenCompass/opencompass/__init__.py
Songyang Zhang c789ce5698
[Fix] the automatically download for several datasets (#1652)
* [Fix] the automatically download for several datasets

* Update

* Update

* Update CI
2024-11-01 15:57:18 +08:00

18 lines
535 B
Python

__version__ = '0.3.4'
def _warn_about_config_migration():
import warnings
warnings.warn(
'Starting from v0.4.0, all AMOTIC configuration files currently '
'located in `./configs/datasets`, `./configs/models`, and '
'`./configs/summarizers` will be migrated to the '
'`opencompass/configs/` package. Please update your configuration '
'file paths accordingly.',
UserWarning, # Changed to UserWarning
stacklevel=2)
# Trigger the warning
_warn_about_config_migration()