Skip to content

Commit 777dcf7

Browse files
AlexanderSchultheissibbem
authored andcommitted
Removed plotting for now
1 parent 47e1916 commit 777dcf7

3 files changed

Lines changed: 0 additions & 16 deletions

File tree

Dockerfile

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -42,13 +42,6 @@ RUN adduser --disabled-password --home /home/sherlock --gecos '' sherlock
4242

4343
RUN apk add --no-cache --upgrade bash
4444
RUN apk add --update openjdk17
45-
RUN apk add --no-cache msttcorefonts-installer fontconfig
46-
RUN update-ms-fonts
47-
RUN apk add --no-cache tesseract-ocr python3 py3-pip py3-numpy && \
48-
pip3 install --upgrade pip setuptools wheel && \
49-
apk add --no-cache --virtual .build-deps gcc g++ zlib-dev make python3-dev py3-numpy-dev jpeg-dev && \
50-
pip3 install matplotlib && \
51-
apk del .build-deps
5245

5346
# REQUIRED: Change into the home directory
5447
WORKDIR /home/sherlock
@@ -62,9 +55,6 @@ WORKDIR /home/sherlock
6255
# Copy the setup
6356
COPY docs holmes/docs
6457

65-
# Copy the plotting scripts
66-
COPY plotting holmes/plotting
67-
6858
# Copy the docker resources
6959
COPY docker/* ./
7060
RUN mkdir DiffDetectiveMining

INSTALL.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -93,10 +93,6 @@ The aggregated results of the validation can be found in the following files.
9393
#Error[not all annotations closed]: 6
9494
```
9595

96-
- The [runtime histogram](results/runtime_histogram.png) of each processed commit.
97-
![](docs/validation/validation_histogram.png)
98-
99-
10096
## Troubleshooting
10197

10298
### 'Got permission denied while trying to connect to the Docker daemon socket'

docker/execute.sh

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,6 @@ if [ "$1" == 'replication' ] || [ "$1" == 'validation' ]; then
2121
cp -r results/* ../results/
2222
java -cp DiffDetectiveRunner.jar mining.FindMedianCommitTime ../results/difftrees
2323
java -cp DiffDetectiveRunner.jar mining.tablegen.MiningResultAccumulator ../results/difftrees ../results/difftrees
24-
python3 plotting/plot.py
25-
cp ./runtime_histogram.png ../results/ || exit
2624
echo "The results are located in the 'results' directory."
2725
else
2826
echo "INVALID ARGUMENT: $1"

0 commit comments

Comments
 (0)