Skip to content

Commit

Permalink
bump version into v0.8 (#55)
Browse files Browse the repository at this point in the history
  • Loading branch information
chensuyue authored Jul 26, 2024
1 parent 7e710cb commit 00fa26e
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/model_test_cpu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ on:
types: [opened, reopened, ready_for_review, synchronize] # added `ready_for_review` since draft is skipped
paths:
- .github/workflows/model_test_cpu.yml
- GenAIEval/**
- evals/evaluation/**
- evals/metrics/**
- setup.py
workflow_dispatch:

Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/model_test_hpu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ on:
types: [opened, reopened, ready_for_review, synchronize] # added `ready_for_review` since draft is skipped
paths:
- .github/workflows/model_test_hpu.yml
- GenAIEval/**
- evals/evaluation/**
- evals/metrics/**
- setup.py
workflow_dispatch:

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/scripts/models/collect_log.sh
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,6 @@ pwd
if [[ ! -f ${log_file} ]]; then
echo "${device};${model};${tasks};${datasets};;" >> ${WORKSPACE}/summary.log
else
acc=$(grep -Po "acc .*(\d+(\.\d+)?)" ${log_file} | awk -F "|" '{print $2}' | head -n 1 | sed 's/.*://;s/[^0-9.]//g')
acc=$(grep -Po "acc .*(\d+(\.\d+)?)" ${log_file} | awk -F "|" '{print $3}' | head -n 1 | sed 's/.*://;s/[^0-9.]//g')
echo "${device};${model};${tasks};${datasets};${acc};" >> ${WORKSPACE}/summary.log
fi
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

setup(
name="opea-eval",
version="0.7",
version="0.8",
author="Intel AISE AIPC Team",
author_email="haihao.shen@intel.com, feng.tian@intel.com, chang1.wang@intel.com, kaokao.lv@intel.com",
description="Evaluation and benchmark for Generative AI",
Expand Down

0 comments on commit 00fa26e

Please sign in to comment.