unijoh commited on
Commit
c20492f
·
verified ·
1 Parent(s): fe38bbf

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -4,8 +4,8 @@ from datasets import load_dataset
4
 
5
  # Load and parse the CSV file from Hugging Face
6
  def load_data():
7
- dataset = load_dataset("your-username/your-dataset-name", split="train")
8
- df = pd.DataFrame(dataset)
9
  lemmas = {}
10
  current_lemma = None
11
 
 
4
 
5
  # Load and parse the CSV file from Hugging Face
6
  def load_data():
7
+ dataset = load_dataset("unijoh/RAVNlex", split="train", download_mode="force_redownload")
8
+ df = pd.DataFrame(dataset['data'])
9
  lemmas = {}
10
  current_lemma = None
11