HelloImSteven
commited on
Commit
•
2cff61c
1
Parent(s):
ba6b375
Update README.md
Browse files
README.md
CHANGED
@@ -58,9 +58,9 @@ The model performs best when given adequate context, such as meaningful variable
|
|
58 |
|
59 |
| Input | Output |
|
60 |
| ----- | ----- |
|
61 |
-
| on makeDirectory(dirPath) | This
|
62 |
-
| open location "https://
|
63 |
-
| do shell script "open -a 'Google Chrome'" | This
|
64 |
|
65 |
# Limitations
|
66 |
|
@@ -68,4 +68,12 @@ This model is a work in progress. It is trained on a small dataset of annotated
|
|
68 |
|
69 |
1. There are concepts and line structures that are simply absent from the dataset, so the model will struggle with them. If you identify such a concept, please consider providing feedback (e.g. expected output).
|
70 |
2. While the model is fine-tuned from Bart and thus has adequate knowledge of outside concepts, it is not able to give explanations of all possible concepts. For example, for inputs involving the `do shell script` command, it will be able to provide explanations of some shell scripts better than others. This is not an area of focus for this model, so do not expect significant improvements in future versions.
|
71 |
-
3. This is not a conversational model.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
58 |
|
59 |
| Input | Output |
|
60 |
| ----- | ----- |
|
61 |
+
| on makeDirectory(dirPath) | This line of AppleScript code begins the definition of a handler named "makeDirectory". Based on its name, the handler is likely used to create a directory path from the path stored in the variable "dirPath". |
|
62 |
+
| open location "https://huggingface.co" | This is a line of AppleScript code that calls the built-in "open location" handler, providing the URL "https://huggingface.co" as a parameter. This is likely used to open a web browser. |
|
63 |
+
| do shell script "open -a 'Google Chrome'" | This is a line of AppleScript code that calls the "open -a" handler of the "Google Chrome" command, providing the output as a shell command. When executed, this line will open the Chrome web browser. |
|
64 |
|
65 |
# Limitations
|
66 |
|
|
|
68 |
|
69 |
1. There are concepts and line structures that are simply absent from the dataset, so the model will struggle with them. If you identify such a concept, please consider providing feedback (e.g. expected output).
|
70 |
2. While the model is fine-tuned from Bart and thus has adequate knowledge of outside concepts, it is not able to give explanations of all possible concepts. For example, for inputs involving the `do shell script` command, it will be able to provide explanations of some shell scripts better than others. This is not an area of focus for this model, so do not expect significant improvements in future versions.
|
71 |
+
3. This is not a conversational model.
|
72 |
+
|
73 |
+
# Validation Metrics
|
74 |
+
|
75 |
+
- Loss: 0.20628
|
76 |
+
- Rouge1: 0.60299
|
77 |
+
- Rouge2: 0.41118
|
78 |
+
- rougeL: 0.52186
|
79 |
+
- RougeLsum: 0.52207
|