beweinreich commited on
Commit
4cd502b
1 Parent(s): 29302f8

Revert audits

Browse files
audits/1718989454.csv CHANGED
@@ -1 +1,18 @@
1
  input_word,original_dictionary_word,new_dictionary_word
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  input_word,original_dictionary_word,new_dictionary_word
2
+ Dreamer,"Light ice cream bar, vanilla",Non-Food Item
3
+ MM lemonade,"Water, non-carbonated, bottles, natural fruit flavors, sweetened with low calorie sweetener",Non-Food Item
4
+ Tea & Lemonade,Vodka and lemonade,Iced Tea / Lemonade juice drink
5
+ Chocolate candy and syrup,Chocolate syrup,Chocolate candy
6
+ Bulk,"Pasta, dry, unenriched",Non-Food Item
7
+ Beef Broth,Fish broth,Non-Food Item
8
+ Jello,"Gelatin desserts, dry mix, reduced calorie, with aspartame, prepared with water",Jellies
9
+ Chip Dip,Chocolate dip,Cheese dip
10
+ Pet Snacks,"Hot dog, meat and poultry",Non-Food Item
11
+ Pans,"Beef, pot roast",Non-Food Item
12
+ Freeze Dried,Mixed Food Items,Non-Food Item
13
+ Chicken Salad,Beef salad,Chicken spread
14
+ Girl Scout,"Cereals ready-to-eat, QUAKER, QUAKER Honey Graham LIFE Cereal",Non-Food Item
15
+ Instant,"Rice, cooked, NFS",Non-Food Item
16
+ Pallet Distro,"Vegetables, mixed, frozen, unprepared",Non-Food Item
17
+ coconut nectar,Banana nectar,Non-Food Item
18
+ "Bread, yeast-leavened, dough, unenriched","Cookie, batter or dough, raw","Doughnuts, yeast-leavened, glazed, unenriched (includes honey buns)"
audits/1719006458.csv ADDED
@@ -0,0 +1,35 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ input_word,original_dictionary_word,new_dictionary_word
2
+ CookieDough,"Cookies, chocolate chip, refrigerated dough",Non-Food Item
3
+ HandSanitizer,Screwdriver,Non-Food Item
4
+ Misc Grovery,Mixed Food Items,Misc Grocery
5
+ PancakeMix,"Pancakes, plain, dry mix, incomplete, prepared",Pancake syrup
6
+ Hand Wipes,Dirty rice,Non-Food Item
7
+ Air Freshener,Vinegar,Non-Food Item
8
+ Diapers & Fem Hygiene,"Infant formula, ABBOTT NUTRITION, SIMILAC, Expert Care, Diarrhea, ready- to- feed with ARA and DHA",Non-Food Item
9
+ Misc Gocery,Mixed Food Items,Misc Grocery
10
+ Misc Meat & Produce,Misc Meat,Non-Food Item
11
+ Filing Cabnit,"Pork, carnitas",Non-Food Item
12
+ Candles,"Mushrooms, raw",Non-Food Item
13
+ Soda Coffee,"Ice cream soda, chocolate","Soft drink, cola"
14
+ Powerade & Tea,Iced Tea / Lemonade juice drink,Sports drink (Powerade)
15
+ Jelly,Jelly,Jellies
16
+ Powdered,Tomato powder,Non-Food Item
17
+ Delta,Mixed Goods,Non-Food Item
18
+ Gaylord,Eggnog,Non-Food Item
19
+ Small,"Cucumber, with peel, raw",Non-Food Item
20
+ Sliced,"Beef, cured, dried",Non-Food Item
21
+ Meat/Cheese Trays,Mixed Food Items,Non-Food Item
22
+ Variety Pack,"Fruit mixture, dried",Non-Food Item
23
+ Non Fat,"Milk, dry, nonfat, instant, with added vitamin A and vitamin D","Milk, nonfat, fluid, without added vitamin A and vitamin D (fat free or skim)"
24
+ Substitute,Coffee substitute,Non-Food Item
25
+ Mashed,"Potato, mashed, NFS",Non-Food Item
26
+ Hand Sanitizer Wipes,Rice paper,Non-Food Item
27
+ Peroxide,Vinegar,Non-Food Item
28
+ Hand Sanitizer & Surface Cleaner,Vinegar,Non-Food Item
29
+ Hand Sanitizer & Cleaning Spray,Vinegar,"Vinegar, distilled"
30
+ Wipes and Hand Sanitizer,Miscellaneous Items,Non-Food Item
31
+ Mineral Water & Misc,Mixed Food Items,Non-Food Item
32
+ Half N Half & Whipping Cream,"Cream, half and half, flavored","Cream, half and half"
33
+ Milk & Silk Milk,"Milk, producer, fluid, 3.7% milkfat",Non-Food Item
34
+ "Milk, human, mature, fluid","Milk, human, mature, fluid","Milk, human"
35
+ Tea & Misc,Mixed Food Items,"Beverages, tea, instant, unsweetened, prepared with water"
results/1718999469.csv ADDED
The diff for this file is too large to render. See raw diff
 
results/1719005659.csv ADDED
The diff for this file is too large to render. See raw diff
 
run.py CHANGED
@@ -5,7 +5,8 @@ from db.db_utils import get_connection
5
  if __name__ == "__main__":
6
  db_conn = get_connection()
7
  algo = Algo(db_conn, True)
8
- raw_file_name = 'food-forward-2022-raw-data.csv'
 
9
  input_file_path = f'./raw/{raw_file_name}'
10
  df_input = pd.read_csv(input_file_path)
11
 
 
5
  if __name__ == "__main__":
6
  db_conn = get_connection()
7
  algo = Algo(db_conn, True)
8
+ # raw_file_name = 'food-forward-2022-raw-data.csv'
9
+ raw_file_name = 'MFB-2022-raw-data.csv'
10
  input_file_path = f'./raw/{raw_file_name}'
11
  df_input = pd.read_csv(input_file_path)
12