Added descriptions to files

This commit is contained in:
Arthur Idema
2026-01-12 15:29:00 +01:00
parent 872a13a394
commit d1d7eb517b
12 changed files with 20 additions and 4 deletions

View File

@@ -1,6 +1,6 @@
#!/bin/bash
set -e
# This script can be used to run an automated CIFF indexing, searching and evaluation process (with bigrams)
# Settings
DB="database.db"
OUT="results.txt"

View File

@@ -1,4 +1,5 @@
#!/bin/bash
# This script can be used to run an automated zoekeend indexing, searching and evaluation process (no bigrams)
set -e
# Settings

View File

@@ -1,4 +1,6 @@
#!/bin/bash
# This script can be used to run a batch of phrase indexing experiments with varying parameters
# Like the minimum frequency and minimum PMI thresholds, to use stopwords or not etc.
set -e
DB_BASE="database"

View File

@@ -1,5 +1,5 @@
#!/bin/bash
# This script can be used to display results (CiP, MAP, etc.) from a batch of experiments, given a folder
set -euo pipefail
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"