Ahtisham1583 commited on
Commit
fefbde9
·
1 Parent(s): 73efe03

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +24 -0
app.py ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+ from nltk.corpus import wordnet as wn
3
+
4
+ # Function to get the definition of the first synset for a given word
5
+ def get_synset_definition(word):
6
+ synsets = wn.synsets(word)
7
+ if synsets:
8
+ first_synset = synsets[0]
9
+ return first_synset.definition()
10
+ else:
11
+ return "No synsets found for the given word."
12
+
13
+ # Gradio Interface
14
+ iface = gr.Interface(
15
+ fn=get_synset_definition,
16
+ inputs=gr.Textbox(),
17
+ outputs=gr.Textbox(),
18
+ live=True,
19
+ title="WordNet Synset Definition",
20
+ description="Enter a word to get the definition of its first WordNet synset.",
21
+ )
22
+
23
+ # Launch the Gradio interface
24
+ iface.launch()