Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove duplicated instructions concerning For knowledge-aware architectures in section Use your own dataset #2

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
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
4 changes: 0 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,6 @@ For knowledge-aware architectures:

- Triples CSV / TSV in the form `(item, entity, relation)`

For knowledge-aware architectures:

- Triples CSV / TSV in the form `(item, entity, relation)`

## Usage
Run an experiment with `experiment.py`.
By default, config.yaml and experiments.yaml will be used for configuration.
Expand Down
2 changes: 1 addition & 1 deletion src/experiment.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ def __init__(self, config):
os.makedirs(self.config.dest, exist_ok=True)
os.makedirs(self.predictions_dest, exist_ok=True)

# Save the config in the experiment folder (R E P R O D U C I B I L I T Y)
# Save the config in the experiment folder (REPRODUCIBILITY)
with open(path_join(self.config.dest, "config.yaml"), 'w') as config_output:
YAML().dump(config, config_output)

Expand Down