Add LFS check
Browse filesIf somebody clones the repo without Git LFS installed then they won't see any errors but will have 'corrupted' VGF/npy files which lead to confusing error messages when running the scenario. This patch adds a line to the cloning instructions to check that LFS has been configured correctly, to catch this issue earlier.
README.md
CHANGED
|
@@ -77,6 +77,7 @@ Clone the NSS model repository from Hugging Face
|
|
| 77 |
```powershell
|
| 78 |
git clone https://huggingface.co/Arm/neural-super-sampling
|
| 79 |
cd neural-super-sampling
|
|
|
|
| 80 |
```
|
| 81 |
|
| 82 |
### Run the Scenario
|
|
|
|
| 77 |
```powershell
|
| 78 |
git clone https://huggingface.co/Arm/neural-super-sampling
|
| 79 |
cd neural-super-sampling
|
| 80 |
+
git lfs pull # Make sure Git LFS is installed - https://git-lfs.com/
|
| 81 |
```
|
| 82 |
|
| 83 |
### Run the Scenario
|