# Copyright 2019-2022 The ASReview Authors. 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.
from asreview.utils import _model_class_from_entry_point
from asreview.utils import list_model_names
[docs]def list_balance_strategies():
"""List available balancing strategy classes.
Returns
-------
list:
Classes of available balance strategies in alphabetical order.
"""
model_class = [
get_balance_class(name)
for name in list_model_names(entry_name="asreview.models.balance")
]
return model_class
[docs]def get_balance_class(name):
"""Get class of balance model from string.
Arguments
---------
name: str
Name of the model, e.g. 'simple', 'double' or 'undersample'.
Returns
-------
BaseBalanceModel:
Class corresponding to the name.
"""
return _model_class_from_entry_point(
name,
entry_name="asreview.models.balance")
[docs]def get_balance_model(name, *args, random_state=None, **kwargs):
"""Get an instance of a balance model from a string.
Arguments
---------
name: str
Name of the balance model.
*args:
Arguments for the balance model.
**kwargs:
Keyword arguments for the balance model.
Returns
-------
BaseFeatureExtraction:
Initialized instance of features extraction algorithm.
"""
balance_class = get_balance_class(name)
try:
return balance_class(*args, random_state=random_state, **kwargs)
except TypeError:
return balance_class(*args, **kwargs)