diff --git a/docs/source/user_guide/config/data_settings.rst b/docs/source/user_guide/config/data_settings.rst index b8e10cf2a..2804eba0a 100644 --- a/docs/source/user_guide/config/data_settings.rst +++ b/docs/source/user_guide/config/data_settings.rst @@ -94,7 +94,7 @@ Preprocessing - ``alias_of_relation_id (list)``: List of fields' names, which will be remapped into the same index system with ``RELATION_ID_FIELD``. Defaults to ``None``. - ``preload_weight (dict)`` : Has the format ``{k (str): v (float)}, ...``. ``k`` is a token field, representing the IDs of each row of preloaded weight matrix. ``v`` is a float-like field. Each pair of ``k`` and ``v`` should be from the same atomic file. This arg can be used to load pretrained vectors. Defaults to ``None``. - ``normalize_field (list)`` : List of filed names to be normalized. Note that only float-like fields can be normalized. Defaults to ``None``. -- ``normalize_all (bool)`` : Normalize all the float like fields if ``True``. Defaults to ``True``. +- ``normalize_all (bool)`` : Normalize all the float like fields if ``True``. Defaults to ``None``. Benchmark file ------------------- diff --git a/recbole/properties/dataset/ml-100k.yaml b/recbole/properties/dataset/ml-100k.yaml index 7c229f814..133a65130 100644 --- a/recbole/properties/dataset/ml-100k.yaml +++ b/recbole/properties/dataset/ml-100k.yaml @@ -43,4 +43,3 @@ alias_of_entity_id: ~ alias_of_relation_id: ~ preload_weight: ~ normalize_field: ~ -normalize_all: True