We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b5e0c6c commit cc3d4f9Copy full SHA for cc3d4f9
1 file changed
docker/execute.sh
@@ -1,10 +1,13 @@
1
#! /bin/bash
2
3
if [ "$1" == '' ]; then
4
- echo "Either fully run DiffDetective as presented in the paper (replication) or a do quick setup verification (verification)."
+ echo "Either fully run DiffDetective as presented in the paper (replication), do quick setup verification (verification),
5
+ or run DiffDetective on a custom dataset by providing the path to the dataset file."
6
echo "-- Examples --"
7
echo "Run replication: './execute.sh replication'"
8
echo "Validate the setup: './execute.sh verification'"
9
+ echo "# See ./docs/verification/datasets.md for format details"
10
+ echo "Custom dataset: './execute.sh my_dataset.md'"
11
exit
12
fi
13
cd /home/sherlock || exit
0 commit comments