Spaces:
Runtime error
Runtime error
Merge pull request #1 from ivybm/milestone-1
Browse files- .idea/.gitignore +3 -0
- README.md +53 -0
- Screenshot 2023-06-06 at 9.48.44 PM.png +0 -0
- Screenshot 2023-06-06 at 9.56.50 PM.png +0 -0
.idea/.gitignore
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
# Default ignored files
|
2 |
+
/shelf/
|
3 |
+
/workspace.xml
|
README.md
CHANGED
@@ -1,2 +1,55 @@
|
|
1 |
# CS670Project
|
2 |
Finetuning Language Models - Can I Patent This?
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
# CS670Project
|
2 |
Finetuning Language Models - Can I Patent This?
|
3 |
+
|
4 |
+
## Docker Installation Instructions for my Macbook Pro
|
5 |
+
1) Go to https://docs.docker.com/get-docker/
|
6 |
+
2) Click on "Docker Desktop for Mac". Docker Desktop is a combination of Docker engine plus a bunch of other tools.
|
7 |
+
3) Since my Macbook has an Apple M1 Pro chip, I clicked on the `Docker Desktop for Mac with Apple silicon` button.
|
8 |
+
4) While waiting for the download to complete, I reviewed the System requirements for `Mac with Apply silicon`.
|
9 |
+
5) In the System requirements it recommends to install `Rosetta 2` so I did that by running the following command.
|
10 |
+
```
|
11 |
+
$ softwareupdate --install-rosetta
|
12 |
+
```
|
13 |
+
6) Once `Rosetta 2` installation was successful and the Docker.dmg was successfully downloaded to my Macbook, I went on to
|
14 |
+
follow the steps in the `Install and run Docker Desktop on Mac`.
|
15 |
+
7) I double-clicked `Docker.dmg` to open the installer, then dragged the Docker icon to the **Applications** folder.
|
16 |
+
8) I then double-clicked `Docker.app` in the **Applications** folder to start Docker.
|
17 |
+
9) A pop-up window appeared with the `Docker Subscription Service Agreement`. I clicked on the `Accept` button.
|
18 |
+
10) Another pop-up appeared asking whether I want to `Use recommended settings` or `Use advanced settings`, I selected
|
19 |
+
the former and clicked on the `Finish` button.
|
20 |
+
11) Another pop-up appeared which was a survey asking about the work I do, I set the role to `Student` and selected
|
21 |
+
`Data science` as use case then clicked on the `Continue` button.
|
22 |
+
12) I noticed that in the menu bar of my Mac, the `Docker menu` is available.
|
23 |
+
13) In the terminal I ran `docker version` and saw the following output.
|
24 |
+
```Client:
|
25 |
+
Cloud integration: v1.0.33
|
26 |
+
Version: 24.0.2
|
27 |
+
API version: 1.43
|
28 |
+
Go version: go1.20.4
|
29 |
+
Git commit: cb74dfc
|
30 |
+
Built: Thu May 25 21:51:16 2023
|
31 |
+
OS/Arch: darwin/arm64
|
32 |
+
Context: desktop-linux
|
33 |
+
|
34 |
+
Server: Docker Desktop 4.20.1 (110738)
|
35 |
+
Engine:
|
36 |
+
Version: 24.0.2
|
37 |
+
API version: 1.43 (minimum version 1.12)
|
38 |
+
Go version: go1.20.4
|
39 |
+
Git commit: 659604f
|
40 |
+
Built: Thu May 25 21:50:59 2023
|
41 |
+
OS/Arch: linux/arm64
|
42 |
+
Experimental: false
|
43 |
+
containerd:
|
44 |
+
Version: 1.6.21
|
45 |
+
GitCommit: 3dce8eb055cbb6872793272b4f20ed16117344f8
|
46 |
+
runc:
|
47 |
+
Version: 1.1.7
|
48 |
+
GitCommit: v1.1.7-0-g860f061
|
49 |
+
docker-init:
|
50 |
+
Version: 0.19.0
|
51 |
+
GitCommit: de40ad0
|
52 |
+
```
|
53 |
+
### Screenshots of Docker Desktop and Ubuntu container terminal prompt
|
54 |
+
![Screenshot 2023-06-06 at 9.48.44 PM.png](Screenshot%202023-06-06%20at%209.48.44%20PM.png)
|
55 |
+
![Screenshot 2023-06-06 at 9.56.50 PM.png](Screenshot%202023-06-06%20at%209.56.50%20PM.png)
|
Screenshot 2023-06-06 at 9.48.44 PM.png
ADDED
Screenshot 2023-06-06 at 9.56.50 PM.png
ADDED