Skip to content

Commit 00fa26e

Browse files
authored
bump version into v0.8 (#55)
1 parent 7e710cb commit 00fa26e

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

.github/workflows/model_test_cpu.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ on:
1010
types: [opened, reopened, ready_for_review, synchronize] # added `ready_for_review` since draft is skipped
1111
paths:
1212
- .github/workflows/model_test_cpu.yml
13-
- GenAIEval/**
13+
- evals/evaluation/**
14+
- evals/metrics/**
1415
- setup.py
1516
workflow_dispatch:
1617

.github/workflows/model_test_hpu.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ on:
1010
types: [opened, reopened, ready_for_review, synchronize] # added `ready_for_review` since draft is skipped
1111
paths:
1212
- .github/workflows/model_test_hpu.yml
13-
- GenAIEval/**
13+
- evals/evaluation/**
14+
- evals/metrics/**
1415
- setup.py
1516
workflow_dispatch:
1617

.github/workflows/scripts/models/collect_log.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,6 @@ pwd
3333
if [[ ! -f ${log_file} ]]; then
3434
echo "${device};${model};${tasks};${datasets};;" >> ${WORKSPACE}/summary.log
3535
else
36-
acc=$(grep -Po "acc .*(\d+(\.\d+)?)" ${log_file} | awk -F "|" '{print $2}' | head -n 1 | sed 's/.*://;s/[^0-9.]//g')
36+
acc=$(grep -Po "acc .*(\d+(\.\d+)?)" ${log_file} | awk -F "|" '{print $3}' | head -n 1 | sed 's/.*://;s/[^0-9.]//g')
3737
echo "${device};${model};${tasks};${datasets};${acc};" >> ${WORKSPACE}/summary.log
3838
fi

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
setup(
99
name="opea-eval",
10-
version="0.7",
10+
version="0.8",
1111
author="Intel AISE AIPC Team",
1212
1313
description="Evaluation and benchmark for Generative AI",

0 commit comments

Comments
 (0)