wop commited on
Commit
2fe6bfa
1 Parent(s): e327866

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -6
app.py CHANGED
@@ -10,18 +10,15 @@ examples = [
10
  ["""The Amazon rainforest (Portuguese: Floresta Amazônica or Amazônia; Spanish: Selva Amazónica, Amazonía or usually Amazonia; French: Forêt amazonienne; Dutch: Amazoneregenwoud), also known in English as Amazonia or the Amazon Jungle, is a moist broadleaf forest that covers most of the Amazon basin of South America. This basin encompasses 7,000,000 square kilometres (2,700,000 sq mi), of which 5,500,000 square kilometres (2,100,000 sq mi) are covered by the rainforest. This region includes territory belonging to nine nations. The majority of the forest is contained within Brazil, with 60% of the rainforest, followed by Peru with 13%, Colombia with 10%, and with minor amounts in Venezuela, Ecuador, Bolivia, Guyana, Suriname and French Guiana. States or departments in four nations contain "Amazonas" in their names. The Amazon represents over half of the planet's remaining rainforests, and comprises the largest and most biodiverse tract of tropical rainforest in the world, with an estimated 390 billion individual trees divided into 16,000 species.""","longformer-base-4096-finetuned-squadv1","Which name is also used to describe the Amazon rainforest in English?"]
11
  ]
12
 
13
- # Set the default model
14
- default_model = "longformer-base-4096-finetuned-squadv1"
15
-
16
  io1 = gr.Interface.load("huggingface/valhalla/longformer-base-4096-finetuned-squadv1")
17
 
18
  io2 = gr.Interface.load("huggingface/allenai/longformer-large-4096-finetuned-triviaqa")
19
 
20
  # Initialize the variable with the default value
21
- selected_model = default_model
22
 
23
- def inference(context, question):
24
- if selected_model == "longformer-base-4096-finetuned-squadv1":
25
  outlabel = io1(context, question)
26
  else:
27
  outlabel = io2(context, question)
 
10
  ["""The Amazon rainforest (Portuguese: Floresta Amazônica or Amazônia; Spanish: Selva Amazónica, Amazonía or usually Amazonia; French: Forêt amazonienne; Dutch: Amazoneregenwoud), also known in English as Amazonia or the Amazon Jungle, is a moist broadleaf forest that covers most of the Amazon basin of South America. This basin encompasses 7,000,000 square kilometres (2,700,000 sq mi), of which 5,500,000 square kilometres (2,100,000 sq mi) are covered by the rainforest. This region includes territory belonging to nine nations. The majority of the forest is contained within Brazil, with 60% of the rainforest, followed by Peru with 13%, Colombia with 10%, and with minor amounts in Venezuela, Ecuador, Bolivia, Guyana, Suriname and French Guiana. States or departments in four nations contain "Amazonas" in their names. The Amazon represents over half of the planet's remaining rainforests, and comprises the largest and most biodiverse tract of tropical rainforest in the world, with an estimated 390 billion individual trees divided into 16,000 species.""","longformer-base-4096-finetuned-squadv1","Which name is also used to describe the Amazon rainforest in English?"]
11
  ]
12
 
 
 
 
13
  io1 = gr.Interface.load("huggingface/valhalla/longformer-base-4096-finetuned-squadv1")
14
 
15
  io2 = gr.Interface.load("huggingface/allenai/longformer-large-4096-finetuned-triviaqa")
16
 
17
  # Initialize the variable with the default value
18
+ selected_model = "longformer-base-4096-finetuned-squadv1"
19
 
20
+ def inference(context, model, question):
21
+ if model == "longformer-base-4096-finetuned-squadv1":
22
  outlabel = io1(context, question)
23
  else:
24
  outlabel = io2(context, question)