Skip to content

Commit

Permalink
Fix bug in eval
Browse files Browse the repository at this point in the history
  • Loading branch information
JonasAlaif committed Jan 27, 2025
1 parent e7cc3e8 commit 2e9bef5
Show file tree
Hide file tree
Showing 2 changed files with 210 additions and 203 deletions.
398 changes: 195 additions & 203 deletions eval/Analyse.ipynb

Large diffs are not rendered by default.

15 changes: 15 additions & 0 deletions eval/download.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
DIRNAME="$(realpath "$(dirname "$0")")"

VERSION=${2:-"unknown"}
mkdir -p "$DIRNAME/data_other/github/$VERSION"
cd "$DIRNAME/data_other/github/$VERSION"
gh run download $1

# Extract all downloaded artifacts (e.g. at `carbon-1/carbon-1.tar.bz2`)
ALL=$(find . -name '*.tar.bz2')
for file in $ALL; do
tar -xjf $file
rm -rf $(dirname $file)
done

mv eval/data/* .

0 comments on commit 2e9bef5

Please sign in to comment.