xjlulu commited on
Commit
35832f2
1 Parent(s): 0805ae7
Files changed (1) hide show
  1. README.md +15 -6
README.md CHANGED
@@ -26,18 +26,27 @@ This is a Slot Tagging demo powered by Gradio. It allows you to enter a sentence
26
 
27
  ## Usage
28
 
29
- 1. Enter a sentence in the text box.
30
- 2. Click the "Submit" button to see the predicted slots highlighted in the text.
31
 
32
  ## Getting Started
33
 
34
  To run this demo locally, follow these steps:
35
 
36
- 1. Clone this repository.
37
- 2. Install the required dependencies listed in the `requirements.txt` file.
38
- 3. Run the `app.py` file using Python.
39
 
40
- ```bash
 
 
 
 
 
 
 
 
 
 
 
41
  python app.py
42
  ```
43
 
 
26
 
27
  ## Usage
28
 
29
+ 1. Enter a sentence in the "Context" text box.
30
+ 2. Click the "Tagging" button to see the predicted slot tags highlighted in the text.
31
 
32
  ## Getting Started
33
 
34
  To run this demo locally, follow these steps:
35
 
36
+ 1. Clone this repository:
 
 
37
 
38
+ ```python
39
+ git clone https://huggingface.co/spaces/xjlulu/slot_tagging
40
+ ```
41
+
42
+ 2. Install the required Python dependencies using:
43
+
44
+ ```python
45
+ pip install -r requirements.txt
46
+ ```
47
+
48
+ 3. Run the application with:
49
+ ```python
50
  python app.py
51
  ```
52