forked from felixbur/nkululeko
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
61 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# nkululeko.demo | ||
|
||
Module to generate predictions from unlabeled data using a pre-trained model. | ||
|
||
Usage: | ||
```bash | ||
python -m nkululeko.demo --config my_config.ini --list my_testsamples.csv --outfile my_results.csv | ||
``` | ||
|
||
Example of a configuration file: | ||
```ini | ||
[EXP] | ||
save = True | ||
[MODEL] | ||
save = True | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# nkululeko.nkululeko | ||
|
||
Module to run experiments with Nkululeko. | ||
|
||
Usage: | ||
```bash | ||
$ python -m nkululeko.nkululeko --config config_file.ini | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# nkululeko.test | ||
|
||
Module for testing the testing known datatast (has labels). | ||
|
||
|
||
Usage: | ||
```bash | ||
python -m nkululeko.test --config mycoonfg.ini --outfile myresults.csv | ||
``` | ||
|
||
|
||
Example of `INI` file: | ||
```ini | ||
[DATA] | ||
tests = ['my_testdb'] | ||
my_testdb = /mypath/my_testdb | ||
... | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters