ayethuzar commited on
Commit
2de47c8
1 Parent(s): 6acd14d

Squashed commit of the following:

Browse files

commit 4e8222bdac58b1dfabffee8a8ed9d5cfe2e7a93f
Author: Aye Thuzar <ayethuzar@gmail.com>
Date: Sun Jun 11 22:28:05 2023 -0400

Update README.md

commit 105e4dcbd7ccb67d977129b7e1d5d9c5a2e0efad
Author: Aye Thuzar <ayethuzar@gmail.com>
Date: Sun Jun 11 22:26:37 2023 -0400

update milestone-1

commit 9e31f120e7f8f18262dae4d6c909b4e2df517a5a
Author: Aye Thuzar <ayethuzar@gmail.com>
Date: Sun Jun 11 22:23:51 2023 -0400

Update README_milestone1.md

commit 96900601b26d8558f6acc66f31ef1c85376e8be6
Author: Aye Thuzar <ayethuzar@gmail.com>
Date: Sun Jun 11 22:19:24 2023 -0400

Update README_milestone1.md

commit 0781ef1ff7cc898f55243bdbfc48dba405858a30
Author: Aye Thuzar <ayethuzar@gmail.com>
Date: Sun Jun 11 22:14:36 2023 -0400

update milestone-1

commit 90275de23727602064aec1198f5949fa1b6a6d9f
Author: Aye Thuzar <ayethuzar@gmail.com>
Date: Sun Jun 11 22:10:23 2023 -0400

Update README_milestone1.md

commit 1a6e65812dbb8c3e2de1aa871096416becb13ada
Author: Aye Thuzar <ayethuzar@gmail.com>
Date: Sun Jun 11 21:17:58 2023 -0400

README_milestone1

commit 34974a40990b0545b71d2d1ccc7fd7e650109a78
Author: Aye Thuzar <ayethuzar@gmail.com>
Date: Sun Jun 11 20:30:28 2023 -0400

milestone1

Files changed (7) hide show
  1. .DS_Store +0 -0
  2. Dockerfile +4 -0
  3. README.md +16 -4
  4. Screenshot1.jpeg +0 -0
  5. Screenshot2.png +0 -0
  6. Screenshot3.png +0 -0
  7. app.js +1 -0
.DS_Store ADDED
Binary file (6.15 kB). View file
 
Dockerfile ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ FROM node:alpine
2
+ COPY . /app
3
+ WORKDIR /app
4
+ CMD node app.js
README.md CHANGED
@@ -1,7 +1,19 @@
1
- # CS670Project
2
 
3
- ## Finetuning Language Models - Can I Patent This?
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4
 
5
- The USPTO is the US Patent and Trademark Office. It is the agency that grants patents to inventors and businesses for their inventions.
6
 
7
- You are fired by USPTO to work on introducting AI into the organization. You are told that USPTO is facing patent examiner staff and budget shortages and to help the organization you are tasked to create an app that will accept an input patent application and will return its patentability score. The app will be made available to the public and will be used by patent applicants to determine the patentability of their inventions before they file their patent applications, therefore reducing the workload of the patent examiners.
 
1
+ # CS670Project_milestone-1
2
 
3
+ **Installation steps**
4
+
5
+ 1. Go to docs.docker.com/get-docker/
6
+ 2. Download "Docker Desktop for Mac with Apple silicon"
7
+ 3. Double-click on the "Docker.dmg" file and follow the instructions to install it
8
+
9
+ ![Alt text](https://github.com/aye-thuzar/CS670Project/blob/milestone-1/Screenshot1.jpeg "installed docker")
10
+
11
+ This is my VS Code:
12
+
13
+ ![Alt text](https://github.com/aye-thuzar/CS670Project/blob/milestone-1/Screenshot2.png "installed docker")
14
+
15
+ This is my Docker Desktop:
16
+
17
+ ![Alt text](https://github.com/aye-thuzar/CS670Project/blob/milestone-1/Screenshot3.png "installed docker")
18
 
 
19
 
 
Screenshot1.jpeg ADDED
Screenshot2.png ADDED
Screenshot3.png ADDED
app.js ADDED
@@ -0,0 +1 @@
 
 
1
+ console.log("Hello Docker!");