d0r1h commited on
Commit
98dbe2e
1 Parent(s): 91dcbe9

Update wordcloudplot.py

Browse files
Files changed (1) hide show
  1. wordcloudplot.py +1 -1
wordcloudplot.py CHANGED
@@ -20,7 +20,7 @@ def plot_wordcloud(input_text):
20
  clean_tokens = [i for i in tokenization(cleantext) if i not in stopwords_hi]
21
 
22
  # unicoding Hindi text for plotting
23
- font = "/content/Hindi_News_Summarizer/gargi.ttf"
24
 
25
  dictionary = Counter(clean_tokens)
26
  wordcloud = WordCloud(width = 1000, height = 700,
 
20
  clean_tokens = [i for i in tokenization(cleantext) if i not in stopwords_hi]
21
 
22
  # unicoding Hindi text for plotting
23
+ font = "gargi.ttf"
24
 
25
  dictionary = Counter(clean_tokens)
26
  wordcloud = WordCloud(width = 1000, height = 700,