HelloImSteven commited on
Commit
2cff61c
1 Parent(s): ba6b375

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +12 -4
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 is a line of AppleScript code that begins the definition of the handler "makeDirectory". The handler takes a single parameter, "dirPath", which is the path to the directory to be made available to the user. When executed, this line will open the directory specified by the variable dirPath. |
62
- | open location "https://apple.com" | This line calls the "open location" handler of the "AppleScript" application, passing the URL "https://apple.com" as an argument. The "open" handler opens the application's web page and brings it to the front. This line must be within a "tell" block that specifies the target application. |
63
- | do shell script "open -a 'Google Chrome'" | This runs a shell script using the "do shell script" handler, providing the text "open -a 'Google Chrome'" as the script to be executed. When executed, this will open the Chrome application in Finder. |
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