kaushikbar commited on
Commit
0bc3a02
1 Parent(s): f5afc3c

included pricing in examples as candidate labels

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -45,13 +45,13 @@ fasttext_model = fasttext.load_model(hf_hub_download("julien-c/fasttext-language
45
 
46
  def prep_examples():
47
  example_text1 = "The tangy feel in my mouth was a different experience altogether."
48
- example_labels1 = "Taste;;Smell;;Delivery;;Packaging;;Availability"
49
 
50
  example_text2 = "The aroma was not quite my type."
51
- example_labels2 = "Taste;;Smell;;Delivery;;Packaging;;Availability"
52
 
53
  example_text3 = "The chocolates came in an attractive orange box."
54
- example_labels3 = "Taste;;Smell;;Delivery;;Packaging;;Availability"
55
 
56
  example_text4 = "I can barely find this product in any store near where I stay."
57
  example_labels4 = "This product has availability issues.;;Stores do not stock this product.;;I live in a remote place."
 
45
 
46
  def prep_examples():
47
  example_text1 = "The tangy feel in my mouth was a different experience altogether."
48
+ example_labels1 = "Taste;;Smell;;Delivery;;Packaging;;Price"
49
 
50
  example_text2 = "The aroma was not quite my type."
51
+ example_labels2 = "Taste;;Smell;;Delivery;;Packaging;;Price"
52
 
53
  example_text3 = "The chocolates came in an attractive orange box."
54
+ example_labels3 = "Taste;;Smell;;Delivery;;Packaging;;Price"
55
 
56
  example_text4 = "I can barely find this product in any store near where I stay."
57
  example_labels4 = "This product has availability issues.;;Stores do not stock this product.;;I live in a remote place."