Skip to content

Commit 7ded0fb

Browse files
committed
Fixing typos.
Typos happen, this is me fixing them. Signed-off-by: JJ Asghar <[email protected]>
1 parent 2796d91 commit 7ded0fb

File tree

3 files changed

+13
-10
lines changed

3 files changed

+13
-10
lines changed

docs/lab-1/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Why did we select Granite as the LLM of choice for this exercise?
1919

2020
Granite Code was produced by IBM Research, with the goal of building an LLM that had only seen code which used enterprise-friendly licenses. According to section 2 of the Granite Code paper ("[Granite Code Models: A Family of Open Foundation Models for Code Intelligence][paper]),the IBM Granite Code models meticulously curated their training data for licenses, and to make sure that all text did not contain any hate, abuse, or profanity.
2121

22-
Many open LLMs available today license the model itself for derivative work, but because they bring in large amounts of training data without discriminating by license, most companies can't use the output of those models since it potentially presents intellectual property concerns. Granite
22+
Many open LLMs available today license the model itself for derivative work, but because they bring in large amounts of training data without discriminating by license, most companies can't use the output of those models since it potentially presents intellectual property concerns. Granite
2323

2424
Granite Code comes in a wide range of sizes to fit your workstation's available resources. Generally, the bigger the model, the better the results, with a tradeoff: model responses will be slower, and it will take up more resources on your machine. I chose the 20b option as my starting point for chat and the 8b option for code generation. Ollama offers a convenient pull feature to download models:
2525

docs/lab-2/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22

33
Lets play with our new found local AI Open Source AI!
44

5-
## Sanity check≤
5+
## Sanity checks
66

77
When you open up `continue` inside of VSCode it should look something like:
88
![](https://docs.continue.dev/assets/images/understand-ca0edc3d06922dd4a95e31fa06f999ec.gif)
99

1010
Before we go any farther, write in "Who is batman?" to verify that `ollama`,
11-
VSCode, and `continue` are all working correctly.
11+
VSCode, and `continue` are all working correctly.
1212

1313
!!! troubleshooting
1414
If Continue is taking a long time to respond, restart Visual Studio Code. If that doesn't resolve your issue, restart Ollama.

docs/pre-work/README.md

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,12 @@
33
These are the required applications and general installation notes for this workshop.
44

55
You'll need:
6+
67
* [Ollama](#ollama) - This application allows you to locally host an LLM model on your computer.
8+
79
* [Visual Studio Code](#visual-studio-code) - We'll be walking through an extension to VSCode in this workshop.
8-
* [Python](#python) - Python is required because...?? ## TODO
10+
11+
* [Python](#python) - Python is required because of InstructLab, and the demo code will be run on it.
912

1013
## Ollama
1114

@@ -17,7 +20,7 @@ You'll need:
1720

1821
Unzip the folder, and move the Ollama app to your applications folder.
1922

20-
##### -OR- Terminal Installation
23+
##### Terminal Installation
2124

2225
Open up a terminal, and install [homebrew](https://brew.sh/).
2326

@@ -57,17 +60,17 @@ Install Code via the website [here](https://code.visualstudio.com/Download).
5760

5861
## Python
5962

60-
Python is a whole programming language. There are multpile ways to install it, and
61-
[here is the offical website](https://www.python.org). Please take a moment and if you can't run
62-
the following command, reach out to a teaching assissant or instructor to help you
63+
Python is a whole programming language. There are multiple ways to install it, and
64+
[here is the official website](https://www.python.org). Please take a moment and if you can't run
65+
the following command, reach out to a teaching assistant or instructor to help you
6366
get resolved.
6467

6568
```bash
6669
python --version
67-
Python 3.12.4
70+
Python 3.11.4
6871
```
6972

70-
Please confirm that your `python --version` is at least `3.11+` for the best experiance.
73+
Please confirm that your `python --version` is at least `3.11+` for the best experience.
7174

7275
With this you should have the applications you need, let's start the workshop!
7376

0 commit comments

Comments
 (0)