added in type casting
Some checks failed
RIA Hub Workflow Demo / ria-demo (push) Failing after 4m58s

This commit is contained in:
Liyu Xiao 2025-05-26 10:06:18 -04:00
parent 489fecf113
commit b3d17f804c
2 changed files with 7 additions and 7 deletions

View File

@ -37,12 +37,12 @@ jobs:
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: 1. Build HDF5 Dataset
run: |
mkdir -p data/dataset
PYTHONPATH=. python data/scripts/produce_dataset.py
echo "datasets produced successfully"
shell: bash
# - name: 1. Build HDF5 Dataset
# run: |
# mkdir -p data/dataset
# PYTHONPATH=. python data/scripts/produce_dataset.py
# echo "datasets produced successfully"
# shell: bash
- name: Upload Dataset Artifacts
uses: actions/upload-artifact@v3

View File

@ -85,7 +85,7 @@ def train_model():
hparams = {
"drop_path_rate": 0.2,
"drop_rate": 0.5,
"learning_rate": training_cfg.learning_rate,
"learning_rate": float(training_cfg.learning_rate),
"wd": 0.01,
}