From 98851c30094074d13b592a3db5d8897a870ff608 Mon Sep 17 00:00:00 2001 From: sekyondaMeta <127536312+sekyondaMeta@users.noreply.github.com> Date: Wed, 11 Oct 2023 15:05:15 -0400 Subject: [PATCH 1/3] Update FAQ.md --- FAQ.md | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/FAQ.md b/FAQ.md index 53e908266..c4891037a 100644 --- a/FAQ.md +++ b/FAQ.md @@ -73,3 +73,26 @@ You can adapt the finetuning script found [here](https://github.com/facebookrese **Q: Am I allowed a develop derivative models through fine-tuning based on Llama 2 for languages other than english? Is this a violation of the acceptable use policy?** A: Developers may fine-tune Llama 2 models for languages beyond English provided they comply with the Llama 2 Community License and the Acceptable Use Policy. + +**Q: What OS is currently supproted?** + +A: +Linux is the only OS currently supported by the code availabe in this repo. + +**Q Getting an error with download script** + ``` + download.sh: 14: [[: not found + ``` + +A: +Make sure to run the command as follows + + ```./download.sh``` + +**Q: Issue with the URL** + ``` + HTTP request sent, awaiting response... 400 Bad Request + ``` +A: +The issue occurs because of not copying the URL correctly. If you right click on the link and copy the link, the link may be copied with url defence wrapper. +To avoid this problem, please select the url manually and copy it From 5d9bb58a65c8f90615696497015a41ac4ffbdd54 Mon Sep 17 00:00:00 2001 From: sekyondaMeta <127536312+sekyondaMeta@users.noreply.github.com> Date: Wed, 11 Oct 2023 15:08:34 -0400 Subject: [PATCH 2/3] Update FAQ.md --- FAQ.md | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/FAQ.md b/FAQ.md index c4891037a..668f6a743 100644 --- a/FAQ.md +++ b/FAQ.md @@ -79,7 +79,8 @@ A: Developers may fine-tune Llama 2 models for languages beyond English provided A: Linux is the only OS currently supported by the code availabe in this repo. -**Q Getting an error with download script** +**Q: Getting an error with download script** + ``` download.sh: 14: [[: not found ``` @@ -87,12 +88,15 @@ Linux is the only OS currently supported by the code availabe in this repo. A: Make sure to run the command as follows - ```./download.sh``` +``` +./download.sh +``` **Q: Issue with the URL** - ``` +``` HTTP request sent, awaiting response... 400 Bad Request - ``` +``` + A: The issue occurs because of not copying the URL correctly. If you right click on the link and copy the link, the link may be copied with url defence wrapper. To avoid this problem, please select the url manually and copy it From 0da077cff670eb3012eb49925f7ee748d603b4a4 Mon Sep 17 00:00:00 2001 From: Joseph Spisak Date: Wed, 11 Oct 2023 12:17:35 -0700 Subject: [PATCH 3/3] Update FAQ.md made some small fixes and added some context. --- FAQ.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/FAQ.md b/FAQ.md index 668f6a743..e1d31afa8 100644 --- a/FAQ.md +++ b/FAQ.md @@ -74,12 +74,12 @@ You can adapt the finetuning script found [here](https://github.com/facebookrese A: Developers may fine-tune Llama 2 models for languages beyond English provided they comply with the Llama 2 Community License and the Acceptable Use Policy. -**Q: What OS is currently supproted?** +**Q: What operating systems (OS) are officially supported?** A: -Linux is the only OS currently supported by the code availabe in this repo. +Linux is the only OS currently supported by this repo. -**Q: Getting an error with download script** +**Q: I am getting the following error with download script. What should I do?** ``` download.sh: 14: [[: not found @@ -92,7 +92,7 @@ Make sure to run the command as follows ./download.sh ``` -**Q: Issue with the URL** +**Q: I am getting "Issue with the URL" as an error message. What do I do?** ``` HTTP request sent, awaiting response... 400 Bad Request ```