fix github workflow

This commit is contained in:
PawelDopierala 2024-06-06 03:04:30 +02:00
parent ae55583129
commit 554ed4e9cd
2 changed files with 2 additions and 2 deletions

View File

@ -66,7 +66,7 @@ jobs:
uses: actions/download-artifact@v2
with:
name: model
path: .
path: ./github_project/hp_model.h5
- name: Evaluate Model
run: python ./github_project/evaluate.py ${{ github.run_number }}

View File

@ -17,7 +17,7 @@ else:
hp_test = pd.read_csv('./github_project/hp_test.csv')
X_test, Y_test = prepare_tensors(hp_test)
model = load_model('./github_project/hp_model.h5')
model = load_model('/home/runner/work/ium/ium/github_project/hp_model.h5')
test_predictions = model.predict(X_test)