Skip to content

Commit

Permalink
updating readme [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
miquelduranfrigola authored and ersilia-bot committed Oct 16, 2023
2 parents fea3a3e + 215c894 commit 7560654
Show file tree
Hide file tree
Showing 2 changed files with 133 additions and 0 deletions.
104 changes: 104 additions & 0 deletions run-inference-instance.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,104 @@
name: Perform Inference Instance

on:
workflow_call:
inputs:
numerator:
required: true
type: number
denominator:
required: true
type: number

env:
MODEL_ID: ${{ github.event.repository.name }}
SHA: ${{ github.sha }}

jobs:
infer-and-upload:
runs-on: ubuntu-latest
steps:
- name: Print system details
run: sudo lshw -short

- name: Check into ersilia-os/ersilia repo
uses: actions/checkout@v3
with:
repository: ersilia-os/ersilia

- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@master
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws-region: eu-central-1

- name: Get input library
run: |
aws s3 cp s3://isaura-bucket/reference_library.csv reference_library.csv
- name: Split library by partition variables
run: |
numerator=${{ inputs.numerator }}
denominator=${{ inputs.denominator }}
filename="reference_library.csv"
## Total # lines in given reference library
total_lines=$(wc -l < "$filename")
echo $total_lines
# Determine the # of file lines per partition
((lines_per_file = (total_lines + $denominator-1) / $denominator))
# Split the file
split -l $lines_per_file -a 4 -d --additional-suffix=.csv "$filename" partition_
# Add 'smiles' to header of all partition files beyond the first
for (( i=1; i<$denominator; i++ ))
do
partition=$(printf "partition_%04d.csv" $i)
sed -i '1i smiles' "$partition"
done
# List files in dir
ls
- name: Add conda to system path
run: echo $CONDA/bin >> $GITHUB_PATH

- name: Source conda
run: source $CONDA/etc/profile.d/conda.sh

- name: Set Python to 3.10.10
run:
conda install -y python=3.10.10

- name: Install dependencies
run: |
source activate
conda init
conda install git-lfs -c conda-forge
git-lfs install
conda install gh -c conda-forge
- name: Install ersilia
run: |
source activate
python --version
echo "After conda init"
conda init
python -m pip install -e .[test]
- name: Predict partition output and upload
run: |
numerator=${{ inputs.numerator }}
index=$((numerator - 1))
source activate
echo "Sample model id selected: $MODEL_ID"
ersilia fetch $MODEL_ID
ersilia serve $MODEL_ID
echo "$MODEL_ID succesfully fetched and served"
ersilia api -i $(printf "partition_%04d.csv" $index) -o ../${SHA}$(printf "_%04d.csv" $numerator)
aws s3 cp ../${SHA}$(printf "_%04d.csv" $numerator) s3://isaura-bucket/out/$MODEL_ID/${SHA}$(printf "_%04d.csv" $numerator)
29 changes: 29 additions & 0 deletions run-inference-pipeline.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Run Inference Pipeline
on:
workflow_dispatch:

workflow_run:
workflows: ["Upload model to DockerHub"]
types:
- completed

permissions:
contents: read

jobs:
matrix-inference:
if: github.repository != 'ersilia-os/eos-template'
strategy:
matrix:
numerator: [
1,2,3,4,5,6,7,8,9,10,
11,12,13,14,15,16,17,18,19,20,
21,22,23,24,25,26,27,28,29,30,
31,32,33,34,35,36,37,38,39,40,
41,42,43,44,45,46,47,48,49,50
]
uses: ./.github/workflows/run-inference-instance.yml
with:
numerator: ${{ matrix.numerator }}
denominator: 50
secrets: inherit

0 comments on commit 7560654

Please sign in to comment.