Symbol-LLM commited on
Commit
1a51e0a
•
1 Parent(s): 6904c2f

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +44 -3
README.md CHANGED
@@ -1,3 +1,44 @@
1
- ---
2
- license: apache-2.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ ---
4
+
5
+
6
+ ## Interactive Evolution: A Neural-Symbolic Self-Training Framework for Large Language Models
7
+
8
+ Paper Link: https://arxiv.org/abs/2406.11736
9
+
10
+ Code Repo: https://github.com/xufangzhi/ENVISIONS
11
+
12
+
13
+
14
+ ## 🔥 News
15
+
16
+ - 🔥🔥🔥 We make public the final checkpoints after self-training ! ! !
17
+
18
+
19
+ ## Note
20
+ The self-training process is based on LLaMA2-Chat model serieses and powered by ENVISIONS. The work is still under review.
21
+
22
+
23
+ ## Prompt for Zero-shot Evaluation
24
+
25
+ ```markdown
26
+ You are required to navigate the web. To accomplish the task, use methods in Agent class to generate actions, with the following functions.
27
+ type(characters: str): Type a string via the keyboard. click_xpath(xpath: str): Click an HTML element with a valid XPath. press(key_type: str): Press a key on the keyboard (enter, space, arrowleft, arrowright, backspace, arrowup, arrowdown, command+a, command+c, command+v). click_option(xpath: str): Click an option HTML element in a list with a valid XPath. movemouse(xpath: str): Move the mouse cursor on an HTML element with a valid XPath.
28
+ The observation is: <observation>
29
+ The action is:
30
+ ```
31
+
32
+
33
+ ## Citation
34
+ If you find it helpful, please kindly cite the paper.
35
+ ```
36
+ @misc{xu2024interactive,
37
+ title={Interactive Evolution: A Neural-Symbolic Self-Training Framework For Large Language Models},
38
+ author={Fangzhi Xu and Qiushi Sun and Kanzhi Cheng and Jun Liu and Yu Qiao and Zhiyong Wu},
39
+ year={2024},
40
+ eprint={2406.11736},
41
+ archivePrefix={arXiv},
42
+ }
43
+ ```
44
+