WICKED4950 commited on
Commit
c00d42c
·
verified ·
1 Parent(s): 6978b54

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -11,7 +11,8 @@ tokenizer = AutoTokenizer.from_pretrained(model_name)
11
  with strategy.scope():
12
  model = TFBlenderbotForConditionalGeneration.from_pretrained(model_name)
13
 
14
- def save_question(question,answer,path = "Space_testing/question_answer.json"):
 
15
  with open(path, "r") as file:
16
  data = json.load(file)
17
  data["Interactions"].append({"Question:":question,"Answer:":answer})
 
11
  with strategy.scope():
12
  model = TFBlenderbotForConditionalGeneration.from_pretrained(model_name)
13
 
14
+ def save_question(question,answer,path = "question_answer.json"):
15
+ print(f"Saving data to: {os.path.abspath(path)}")
16
  with open(path, "r") as file:
17
  data = json.load(file)
18
  data["Interactions"].append({"Question:":question,"Answer:":answer})