Skip to content

clarified docs on fine-tuning in the context of hippynn restart example #2

clarified docs on fine-tuning in the context of hippynn restart example

clarified docs on fine-tuning in the context of hippynn restart example #2

Workflow file for this run

name: Package Build
on:
push:
branches:
- main
- development
pull_request:
branches:
- main
- development
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.12'
- name: Build source and wheel distributions
run: |
python -m pip install --upgrade pip
pip install build
python -m build
- name: Install built wheel
run: |
pip install dist/*.whl
- name: Import installed package outside checkout
run: |
cd /tmp
python -c "import alframework; import alframework.tools.tools; import alframework.builders.builders; import alframework.qm_interfaces.orca5_interface; import alframework.samplers.ASE_ensemble_constructor"