Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/cli/flags.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ or directly passed as flags. If an option exists in both the config
file and flags, flags take precedent and override the config file.

The config file is a yaml file, examples may be found in
`example_config <https://github.com/ASUS-AICS/LibMultiLabel/tree/master/example_config>`_.
`example_config <https://github.com/ntumlgroup/LibMultiLabel/tree/master/example_config>`_.
In the config file, each key-value pair ``key: value`` corresponds to
passing the flag ``--key value``. The following example sets the training data path
in the config file
Expand Down
4 changes: 2 additions & 2 deletions docs/cli/ov_data_format.rst
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,11 @@ and then create a virtual enviroment as follows.
conda create -n LibMultiLabel python=3.8
conda activate LibMultiLabel

* Clone `LibMultiLabel <https://github.com/ASUS-AICS/LibMultiLabel>`_.
* Clone `LibMultiLabel <https://github.com/ntumlgroup/LibMultiLabel>`_.

.. code-block:: bash

git clone https://github.com/ASUS-AICS/LibMultiLabel.git
git clone https://github.com/ntumlgroup/LibMultiLabel.git
cd LibMultiLabel

* Install the default dependencies with:
Expand Down
4 changes: 2 additions & 2 deletions docs/tutorials/Parameter_Selection_for_Neural_Networks.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Direct Trying Some Parameters
-----------------------------

First, train a BiGRU model with the
`default configuration file <https://github.com/ASUS-AICS/LibMultiLabel/blob/master/example_config/EUR-Lex/bigru_lwan.yml>`_
`default configuration file <https://github.com/ntumlgroup/LibMultiLabel/blob/master/example_config/EUR-Lex/bigru_lwan.yml>`_
with a little modification on the learning rate.
Some important parameters are listed as follows.

Expand Down Expand Up @@ -92,7 +92,7 @@ To save time, LibMultiLabel has incorporated some early stopping techniques impl
Here we demonstrate an example of applying an `ASHA (Asynchronous Successive Halving Algorithm) Scheduler <https://arxiv.org/abs/1810.05934>`_.

First, uncomment the following lines in the
`configuration file <https://github.com/ASUS-AICS/LibMultiLabel/blob/master/example_config/EUR-Lex/bigru_lwan_tune.yml>`_:
`configuration file <https://github.com/ntumlgroup/LibMultiLabel/blob/master/example_config/EUR-Lex/bigru_lwan_tune.yml>`_:

.. code-block:: bash

Expand Down
Loading