Fix default model directory and remove a superfluous word

PiperOrigin-RevId: 696434352
This commit is contained in:
Augustin Zidek
2024-11-14 09:40:05 +00:00
parent 44e1fd572a
commit bd9cd55bb2
2 changed files with 3 additions and 3 deletions

View File

@ -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 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). [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 **You must not access or use nor allow others to access or use the AlphaFold 3
3 Assets:** Assets:**
1. **On behalf of a commercial organization or in connection with any 1. **On behalf of a commercial organization or in connection with any
commercial activities, including research on behalf of commercial commercial activities, including research on behalf of commercial

View File

@ -56,7 +56,7 @@ import numpy as np
_HOME_DIR = pathlib.Path(os.environ.get('HOME')) _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' DEFAULT_DB_DIR = _HOME_DIR / 'public_databases'