From bd9cd55bb21aa93d7c33ed2e904ff8338004b0da Mon Sep 17 00:00:00 2001 From: Augustin Zidek <augustinzidek@google.com> Date: Thu, 14 Nov 2024 09:40:05 +0000 Subject: [PATCH] Fix default model directory and remove a superfluous word PiperOrigin-RevId: 696434352 --- WEIGHTS_PROHIBITED_USE_POLICY.md | 4 ++-- run_alphafold.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/WEIGHTS_PROHIBITED_USE_POLICY.md b/WEIGHTS_PROHIBITED_USE_POLICY.md index 74b053f..da977ff 100644 --- a/WEIGHTS_PROHIBITED_USE_POLICY.md +++ b/WEIGHTS_PROHIBITED_USE_POLICY.md @@ -8,8 +8,8 @@ free of charge for certain non-commercial uses in accordance with the restrictions set out below. This policy uses the same defined terms as the [AlphaFold 3 Model Parameters Terms of Use](https://github.com/google-deepmind/alphafold3/blob/main/WEIGHTS_TERMS_OF_USE.md). -**You must not access or use nor allow others to access or use the the AlphaFold -3 Assets:** +**You must not access or use nor allow others to access or use the AlphaFold 3 +Assets:** 1. **On behalf of a commercial organization or in connection with any commercial activities, including research on behalf of commercial diff --git a/run_alphafold.py b/run_alphafold.py index cecf27b..7dd4710 100644 --- a/run_alphafold.py +++ b/run_alphafold.py @@ -56,7 +56,7 @@ import numpy as np _HOME_DIR = pathlib.Path(os.environ.get('HOME')) -DEFAULT_MODEL_DIR = _HOME_DIR / 'models/model_103275239_1' +DEFAULT_MODEL_DIR = _HOME_DIR / 'models' DEFAULT_DB_DIR = _HOME_DIR / 'public_databases' -- GitLab