bhumika-tewari-282006 commited on
Commit
eb3e30d
·
verified ·
1 Parent(s): 602a615

Add real 3-engine (Tesseract/EasyOCR/PaddleOCR) benchmark results, ground-truth manifest, and Kaggle reproduction guide

Browse files
Files changed (3) hide show
  1. README.md +121 -0
  2. manual100_final.csv +100 -0
  3. phase4_engine_comparison.json +0 -0
README.md ADDED
@@ -0,0 +1,121 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-sa-4.0
3
+ task_categories:
4
+ - image-to-text
5
+ language:
6
+ - en
7
+ - bn
8
+ - hi
9
+ tags:
10
+ - ocr
11
+ - benchmark
12
+ - assistive-technology
13
+ - multilingual
14
+ - wearable
15
+ pretty_name: Assistive OCR Wearable Module — Engine Benchmark Results
16
+ size_categories:
17
+ - n<1K
18
+ ---
19
+
20
+ # Assistive OCR — Benchmark Results
21
+
22
+ Real, reproducible benchmark results for the assistive OCR wearable module (offline, multilingual — English, Bengali+English, Hindi+English). This repository holds **results and the ground-truth manifest**, not the source images themselves — the manually-verified image set they were computed from is published separately at [`Arko007/assistive-ocr-data-acquisition`](https://huggingface.co/datasets/Arko007/assistive-ocr-data-acquisition) (folder `manual_verification_99/`), so this repository's numbers can always be traced back to the exact images that produced them.
23
+
24
+ ## What's in this repository
25
+
26
+ | File | What it is |
27
+ |---|---|
28
+ | `manual100_final.csv` | The 99-row ground-truth manifest: `id`, `image_path`, `language_profile`, `domain`, `manual_transcript` (each transcript individually re-checked by hand, not auto-generated) |
29
+ | `phase4_engine_comparison.json` | Full per-image, per-engine results for an isolated (no cross-engine fallback) comparison of **Tesseract**, **EasyOCR**, and **PaddleOCR** against every row in the manifest |
30
+
31
+ ## Headline results
32
+
33
+ Isolated per-engine comparison across all 99 manually-verified images (lenient pass = at least one clinically/contextually meaningful word correctly recovered):
34
+
35
+ | Engine | Attempted | Pass rate | Mean keyword recall | Bengali support |
36
+ |---|---|---|---|---|
37
+ | Tesseract | 99/99 | 71.7% | 43.2% | Yes |
38
+ | EasyOCR | 99/99 | 91.9% | 62.7% | Yes |
39
+ | PaddleOCR | 65/99 (34 skipped) | 90.8% (of attempted) | 72.5% (of attempted) | **No** |
40
+
41
+ **Conclusion:** EasyOCR remains the primary engine and Tesseract the confidence-gated fallback. PaddleOCR cannot process Bengali+English at all (no Bengali in its published model matrix), and even restricted to the languages it does support, it does not meaningfully outperform EasyOCR — so it was evaluated but not adopted. Full reasoning and the fair same-language-subset comparison are in the project's `PROJECT_STATUS.md` (2026-07-31 entry) and `docs/PROJECT_REPORT.md` in the main code repository.
42
+
43
+ ## Reproducing this benchmark yourself on Kaggle
44
+
45
+ You don't need your own computer to be powerful for this — Kaggle gives you a free notebook with everything already installed. Here's the simplest path, in order.
46
+
47
+ ### Step 1 — Start a new Kaggle notebook
48
+
49
+ Go to [kaggle.com/code](https://www.kaggle.com/code) → **New Notebook**. In the right-hand sidebar, turn on **Internet** (Settings → Internet → On) so the notebook can install packages and clone the code.
50
+
51
+ ### Step 2 — Add this dataset and the image dataset as notebook inputs
52
+
53
+ Click **Add Input** (top right) and add:
54
+ 1. This dataset (`manual100_final.csv`)
55
+ 2. `Arko007/assistive-ocr-data-acquisition` (the actual images)
56
+
57
+ They'll appear under `/kaggle/input/` once added.
58
+
59
+ ### Step 3 — Install the OCR engines (one notebook cell)
60
+
61
+ ```bash
62
+ !apt-get -qq update && apt-get -qq install -y tesseract-ocr tesseract-ocr-ben tesseract-ocr-hin
63
+ !pip install -q "assistive-ocr[tesseract,easyocr] @ git+https://github.com/Bhumika2006-hue/ocr-wearable-module.git"
64
+ ```
65
+
66
+ ### Step 4 — Point the manifest at the real image paths (one notebook cell)
67
+
68
+ The manifest's `image_path` column is relative (e.g. `hf_medicines/...`); this cell rewrites it to the actual Kaggle input location so the benchmark can find each image:
69
+
70
+ ```python
71
+ import csv, pathlib
72
+
73
+ IMAGE_ROOT = pathlib.Path("/kaggle/input/assistive-ocr-data-acquisition/manual_verification_99/images")
74
+ MANIFEST_IN = "/kaggle/input/<this-dataset-slug>/manual100_final.csv"
75
+ MANIFEST_OUT = "/kaggle/working/manifest.csv"
76
+
77
+ rows = list(csv.DictReader(open(MANIFEST_IN, encoding="utf-8")))
78
+ for row in rows:
79
+ row["image_path"] = str(IMAGE_ROOT / pathlib.Path(row["image_path"]).name)
80
+
81
+ with open(MANIFEST_OUT, "w", newline="", encoding="utf-8") as f:
82
+ writer = csv.DictWriter(f, fieldnames=rows[0].keys())
83
+ writer.writeheader()
84
+ writer.writerows(rows)
85
+
86
+ print(f"Wrote {len(rows)} rows to {MANIFEST_OUT}")
87
+ ```
88
+
89
+ Replace `<this-dataset-slug>` with whatever Kaggle names this dataset once you've added it as an input (visible in the `/kaggle/input/` path shown in the notebook's file browser).
90
+
91
+ ### Step 5 — Run the benchmark (one notebook cell per engine)
92
+
93
+ ```bash
94
+ !assistive-ocr-benchmark /kaggle/working/manifest.csv --engine tesseract --output /kaggle/working/tesseract_results.json
95
+ !assistive-ocr-benchmark /kaggle/working/manifest.csv --engine easyocr --output /kaggle/working/easyocr_results.json
96
+ ```
97
+
98
+ (Add `--engine paddleocr` too if you also want to reproduce the PaddleOCR comparison — it needs one extra install: `!pip install -q paddlepaddle==2.6.2 paddleocr==2.7.3 "numpy<2"` before running.)
99
+
100
+ ### Step 6 — Look at the results
101
+
102
+ ```python
103
+ import json
104
+
105
+ for name in ("tesseract", "easyocr"):
106
+ data = json.load(open(f"/kaggle/working/{name}_results.json"))
107
+ print(name, "->", data["summary"])
108
+ ```
109
+
110
+ Each engine's run produces per-image records plus a `summary` broken down by `language_profile::domain` (word/character error rate, exact-match rate, keyword recall, latency, calibration error). Compare this against the headline table above — it should reproduce those numbers, since both were run from the exact same manifest and images.
111
+
112
+ ### If something doesn't match
113
+
114
+ - Different Tesseract/EasyOCR versions than the ones the project pinned can shift numbers slightly (a percentage point or two) — this is expected, not a bug.
115
+ - If a row errors out instead of producing a number, check that Step 4 actually found the image files (`print(rows[0])` after loading the manifest to sanity-check a resolved path exists with `pathlib.Path(...).exists()`).
116
+ - The full setup/troubleshooting guide (for running the whole assistive OCR app, not just this benchmark) is in `docs/SETUP_GUIDE.md` in the main code repository.
117
+
118
+ ## Links
119
+
120
+ - Main code repository: [Bhumika2006-hue/ocr-wearable-module](https://github.com/Bhumika2006-hue/ocr-wearable-module)
121
+ - Source images this benchmark was computed from: [`Arko007/assistive-ocr-data-acquisition`](https://huggingface.co/datasets/Arko007/assistive-ocr-data-acquisition)
manual100_final.csv ADDED
@@ -0,0 +1,100 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ id,image_path,language_profile,domain,manual_transcript
2
+ hf_bromostar_t_eye_drop,hf_medicines/hf_hf_bromostar_t_eye_drop_1353.jpg,en,medicine_packaging,Brimonidine Tartrate Timolol Maleate Ophthalmic Solution Bromostar T Eye Drops 5ml Star Mankind
3
+ hf_ivrea_1_cream,hf_medicines/hf_hf_ivrea_1_cream_3678.jpg,en,medicine_packaging,Ivermectin Cream 1.0% w/w Ivrea 1 Cream ajanta 30g
4
+ hf_lamifin_m_cream,hf_medicines/hf_hf_lamifin_m_cream_4726.jpg,en,medicine_packaging,Terbinafine Hydrochloride Mometasone Furoate Cream Lamifin M Carixa 15g
5
+ hf_levepsy_1000_tablet,hf_medicines/hf_hf_levepsy_1000_tablet_4847.jpg,en,medicine_packaging,Levepsy 1000 3x10 Tablets Cipla
6
+ hf_basalog_100iu_ml_injection,hf_medicines/hf_hf_basalog_100iu_ml_injection_1195.jpg,en,medicine_packaging,Insulin Glargine Injection IP rDNA Origin Basalog 100 IU/mL Biocon Biologics 3mL
7
+ hf_forair_250_cfc_free_inhaler,hf_medicines/hf_hf_forair_250_cfc_free_inhaler_2517.jpg,en,medicine_packaging,Salmeterol and Fluticasone Propionate Inhalation IP Forair 250 Inhaler 120 Metered Doses CFC Free German Remedies
8
+ hf_leepure_tablet,hf_medicines/hf_hf_leepure_tablet_4848.jpg,en,medicine_packaging,Silymarin Metadoxine L-Ornithine L-Aspartate Pyridoxine HCl Folic Acid Tablets Leepure Resolute Healthcare
9
+ hf_loette_tablet,hf_medicines/hf_hf_loette_tablet_4326.jpg,en,medicine_packaging,Levonorgestrel and Ethinyloestradiol Tablets IP Loette Pfizer 21 Tablets
10
+ hf_luliz_1__cream,hf_medicines/hf_hf_luliz_1__cream_4783.jpg,en,medicine_packaging,Luliconazole Cream Luliz Ipca 15g
11
+ hf_lipicure_20_tablet,hf_medicines/hf_hf_lipicure_20_tablet_4505.jpg,en,medicine_packaging,Atorvastatin Calcium Tablets IP 20mg Lipicure 20 Intas 10x15 Tablets
12
+ hf_ketodust_cream,hf_medicines/hf_hf_ketodust_cream_4231.jpg,en,medicine_packaging,Ketoconazole Cream 2% w/w Ketodust 30gm
13
+ hf_lipigo_10_tablet,hf_medicines/hf_hf_lipigo_10_tablet_4575.jpg,en,medicine_packaging,Rosuvastatin Tablets IP 10mg LipiGo 10 Merck 10x10 Tablets
14
+ hf_losar_beta_tablet,hf_medicines/hf_hf_losar_beta_tablet_4665.jpg,en,medicine_packaging,Losartan Potassium Atenolol Tablets Losar Beta 50mg 50mg
15
+ hf_ketofly_soap_from_leeford_for_skin_infections,hf_medicines/hf_hf_ketofly_soap_from_leeford_for_skin_in_4021.jpg,en,medicine_packaging,Ketoconazole Cetrimide Soap Ketofly Anti Fungal Medicated Soap 75g
16
+ hf_floxiwave_60_capsule,hf_medicines/hf_hf_floxiwave_60_capsule_2722.jpg,en,medicine_packaging,Fluoxetine Capsules USP Floxiwave 60 10x10 Capsules
17
+ hf_augmentin_dds_suspension,hf_medicines/hf_hf_augmentin_dds_suspension_45.jpg,en,medicine_packaging,Amoxycillin and Potassium Clavulanate Oral Suspension IP Augmentin DDS 5.4g 30ml GlaxoSmithKline Beecham
18
+ hf_lulirx_spray,hf_medicines/hf_hf_lulirx_spray_4999.jpg,en,medicine_packaging,Luliconazole Lotion 1% w/v LuliRx Spray 50ml
19
+ hf_adbrom_free_eye_drop,hf_medicines/hf_hf_adbrom_free_eye_drop_925.jpg,en,medicine_packaging,Bromfenac Eye Drops Adbrom Free Sterile 5ml Preservative Free
20
+ hf_bosentas_62_5_tablet,hf_medicines/hf_hf_bosentas_62_5_tablet_1264.jpg,en,medicine_packaging,Bosentas 62.5 Cipla 2x10 Tablets
21
+ hf_genericart_amlodipine_lisinopril_5mg_5mg_tablet,hf_medicines/hf_hf_genericart_amlodipine_lisinopril_5mg__3330.jpg,en,medicine_packaging,Lisinopril 5mg Amlodipine 5mg Tablets
22
+ hf_afitra_cream,hf_medicines/hf_hf_afitra_cream_1138.jpg,en,medicine_packaging,Itraconazole Cream 1% w/w Afitra Aspire Rxpross 10g
23
+ hf_kyrah_tablet,hf_medicines/hf_hf_kyrah_tablet_4121.jpg,en,medicine_packaging,Desogestrel and Ethinyl Estradiol Tablets Kyrah Jagsonpal 21 Tablets Oral
24
+ hf_apdrops_pd_eye_drop,hf_medicines/hf_hf_apdrops_pd_eye_drop_120.jpg,en,medicine_packaging,Moxifloxacin Plus Prednisolone Acetate Ophthalmic Suspension Apdrops PD Eye Drops Sterile ajanta 10ml
25
+ hf_lacoset_200_tablet,hf_medicines/hf_hf_lacoset_200_tablet_4572.jpg,en,medicine_packaging,Lacosamide Tablets Lacoset 200
26
+ hf_hypig_15_cream,hf_medicines/hf_hf_hypig_15_cream_3620.jpg,en,medicine_packaging,Hydroquinone Octyl Methoxycinnamate Oxybenzone Cream Hypig 15 Skin Fade Cream SPF 15 dermocare 20gm
27
+ hf_enzowin_d__tablet,hf_medicines/hf_hf_enzowin_d__tablet_2364.jpg,en,medicine_packaging,Trypsin Bromelain Rutoside Trihydrate Diclofenac Sodium Tablets Enzowin D Winmark 1x10 Tablets
28
+ hf_lipicure_20_tablet,hf_medicines/hf_hf_lipicure_20_tablet_4505.jpg,en,medicine_packaging,Atorvastatin Calcium Tablets IP 20mg Lipicure 20 Intas 10x15 Tablets
29
+ hf_gaspaz_capsule,hf_medicines/hf_hf_gaspaz_capsule_2889.jpg,en,medicine_packaging,Omeprazole and Domperidone Capsules IP Gaspaz
30
+ hf_juvobin_40_injection,hf_medicines/hf_hf_juvobin_40_injection_3966.jpg,en,medicine_packaging,Darbepoetin alfa Injection Juvobin 40 single dose pre filled syringe
31
+ hf_korandil_10_tablet,hf_medicines/hf_hf_korandil_10_tablet_4058.jpg,en,medicine_packaging,Nicorandil Tablets IP Korandil 10 3x10 Tablets
32
+ hf_iz_k_soap,hf_medicines/hf_hf_iz_k_soap_3866.jpg,bn+en,medicine_packaging,Ketoconazole Soap 1% w/w iZ-K Soap MRHM 75g
33
+ hf_lopamide_tablet,hf_medicines/hf_hf_lopamide_tablet_4254.jpg,bn+en,medicine_packaging,Loperamide Hydrochloride Tablets IP Lopamide 2mg
34
+ hf_lcz_10_tablet,hf_medicines/hf_hf_lcz_10_tablet_4538.jpg,bn+en,medicine_packaging,Levocetirizine Dihydrochloride Tablets IP 10mg LCZ 10 10x10 Tablets
35
+ hf_apxenta_30mg_tablet,hf_medicines/hf_hf_apxenta_30mg_tablet_771.jpg,bn+en,medicine_packaging,Apremilast Tablets 30mg Apxenta ajanta 10x10 Tablets
36
+ hf_hh_linctus_junior_syrup_alcohol_free,hf_medicines/hf_hf_hh_linctus_junior_syrup_alcohol_free_3488.jpg,bn+en,medicine_packaging,Bromide and Chlorpheniramine HH Linctus Junior Honey Based Cough Syrup Alcohol Free Codeine Free Dry Cough 100ml
37
+ hf_afenak_plus_s_100mg_325mg_10mg_tablet,hf_medicines/hf_hf_afenak_plus_s_100mg_325mg_10mg_tablet_906.jpg,bn+en,medicine_packaging,Aceclofenac Paracetamol Serratiopeptidase Tablets Ranbaxy Afenak Plus S
38
+ hf_l_sys_cream,hf_medicines/hf_hf_l_sys_cream_4718.jpg,bn+en,medicine_packaging,Luliconazole Cream IP 1% w/w L Sys Systopic 50gm
39
+ hf_laxil_oral_solution,hf_medicines/hf_hf_laxil_oral_solution_4539.jpg,bn+en,medicine_packaging,Allens Laxil For Intractable Constipation Homoeopathic Combination
40
+ hf_gemidro_tablet,hf_medicines/hf_hf_gemidro_tablet_3014.jpg,bn+en,medicine_packaging,Ibandronic Acid Tablets 150mg Gemidro 1 Tablet
41
+ hf_gluconorm_g_4_forte_tablet_pr,hf_medicines/hf_hf_gluconorm_g_4_forte_tablet_pr_2964.jpg,bn+en,medicine_packaging,Metformin Hydrochloride Prolonged Release Glimepiride Tablets IP 1000mg 4mg Gluconorm G 4 Forte Lupin 10x15 Tablets
42
+ hf_lox_5__ointment,hf_medicines/hf_hf_lox_5__ointment_4705.jpg,bn+en,medicine_packaging,Lidocaine Ointment USP Lox 5% Ointment Local Anaesthetic Neon 20gm
43
+ hf_bigomet_m__tablet_sr,hf_medicines/hf_hf_bigomet_m__tablet_sr_1417.jpg,bn+en,medicine_packaging,Metformin Hydrochloride Sustained Release 500mg Methylcobalamin 750mcg Tablets Bigomet M 10x10 Tablets
44
+ hf_lupisulin_m_30_injection_100iu_ml,hf_medicines/hf_hf_lupisulin_m_30_injection_100iu_ml_4611.jpg,bn+en,medicine_packaging,Biphasic Isophane Insulin Injection IP Lupisulin M 30 30/70 100 Lupin Diabetes Care 5x3ml Cartridge
45
+ hf_lipophage_120_capsule,hf_medicines/hf_hf_lipophage_120_capsule_4937.jpg,bn+en,medicine_packaging,Orlistat Capsules USP 120mg Lipophage 120 1x10 Capsules
46
+ hf_glyciphage_p_15_mg_500_mg_tablet_sr,hf_medicines/hf_hf_glyciphage_p_15_mg_500_mg_tablet_sr_3174.jpg,bn+en,medicine_packaging,Pioglitazone 15mg Metformin Hydrochloride Sustained Release 500mg Tablets Glyciphage P15
47
+ hf_aquasurge__eye_drop,hf_medicines/hf_hf_aquasurge__eye_drop_217.jpg,bn+en,medicine_packaging,Carboxymethylcellulose Eye Drops IP 0.5% w/v Aquasurge Ipca Sterile 10ml
48
+ hf_inogla_m_500_tablet_sr,hf_medicines/hf_hf_inogla_m_500_tablet_sr_3792.jpg,bn+en,medicine_packaging,Teneligliptin 20mg and Metformin Hydrochloride Sustained Release 500mg Tablets Inogla M 500 Wockhardt 10x10 Tablets
49
+ hf_intacoxia_60mg_tablet,hf_medicines/hf_hf_intacoxia_60mg_tablet_3728.jpg,bn+en,medicine_packaging,Etoricoxib Tablets IP Intacoxia 60 Intas Pharmaceuticals
50
+ hf_livodox_plus_tablet,hf_medicines/hf_hf_livodox_plus_tablet_4735.jpg,bn+en,medicine_packaging,Metadoxine Silymarin LOLA Folic Acid Vit B6 Tablets Livodox Plus Mesmer Pharmaceuticals
51
+ hf_levoflox_750_tablet,hf_medicines/hf_hf_levoflox_750_tablet_4351.jpg,bn+en,medicine_packaging,Levofloxacin Tablets IP 750mg Levoflox 750 Cipla 5x2x5 Tablets
52
+ hf_ac_para_100mg_325mg_tablet,hf_medicines/hf_hf_ac_para_100mg_325mg_tablet_918.jpg,bn+en,medicine_packaging,Aceclofenac Paracetamol Tablets AC PARA mmc pharmaceuticals
53
+ hf_ketoneph_tablet,hf_medicines/hf_hf_ketoneph_tablet_4104.jpg,bn+en,medicine_packaging,Alpha Ketoanalogue Tablets Ketoneph Rencord 10x10 Tablets
54
+ syn_medicine_packaging_bn_4,synthetic/syn_medicine_packaging_bn_4.png,bn+en,medicine_packaging,Cetirizine 10mg Tablet
55
+ hf_losacar_h_tablet,hf_medicines/hf_hf_losacar_h_tablet_4698.jpg,bn+en,medicine_packaging,Losartan Potassium Hydrochlorothiazide Tablets IP Losacar H Zydus Medica 5x4x10 Tablets
56
+ hf_k_met_500mg_tablet_pr,hf_medicines/hf_hf_k_met_500mg_tablet_pr_4129.jpg,bn+en,medicine_packaging,Metformin Hydrochloride Prolonged release Tablets IP K MET 500 Excel Blue Cross Laboratories
57
+ hf_betnovate_cream,hf_medicines/hf_hf_betnovate_cream_1165.jpg,bn+en,medicine_packaging,Betamethasone Valerate Cream IP Betnovate Skin Cream GSK Lamitube 20g
58
+ hf_levoflox_500_infusion,hf_medicines/hf_hf_levoflox_500_infusion_4371.jpg,bn+en,medicine_packaging,Levoflox 500 Infusion Cipla 100ml For Single Dose Intravenous Administration Only
59
+ hf_ketogold_medicated_soap,hf_medicines/hf_hf_ketogold_medicated_soap_4203.jpg,bn+en,medicine_packaging,Ketoconazole Soap Ketogold Medicated Soap Rockmed Pharma 75gm
60
+ hf_ketafung_cream,hf_medicines/hf_hf_ketafung_cream_4141.jpg,bn+en,medicine_packaging,Ketoconazole Cream 2% w/w Ketafung Cream 20g
61
+ hf_keppra_500mg_tablet,hf_medicines/hf_hf_keppra_500mg_tablet_4041.jpg,bn+en,medicine_packaging,Levetiracetam Tablets USP Keppra 500mg UCB 1x10 Tablets
62
+ hf_lacotide_100mg_tablet,hf_medicines/hf_hf_lacotide_100mg_tablet_4600.jpg,hi+en,medicine_packaging,Lacosamide Tablets Ph Eur 100mg Lacotide 100 Intas
63
+ hf_kidpred_syrup,hf_medicines/hf_hf_kidpred_syrup_4017.jpg,hi+en,medicine_packaging,Prednisolone Sodium Phosphate Syrup Kidpred 60ml Abbott
64
+ hf_gabapin_sr_450_tablet,hf_medicines/hf_hf_gabapin_sr_450_tablet_2965.jpg,hi+en,medicine_packaging,Gabapentin Sustained Release Tablets 450mg Gabapin SR 450 Intas 10x10 Tablets
65
+ hf_losanorm_50_h_tablet,hf_medicines/hf_hf_losanorm_50_h_tablet_4828.jpg,hi+en,medicine_packaging,Losartan Potassium Hydrochlorothiazide Tablets IP Losanorm 50 H Ipca
66
+ hf_levera_250_tablet,hf_medicines/hf_hf_levera_250_tablet_4489.jpg,hi+en,medicine_packaging,Levetiracetam Tablets USP 250mg Levera 250 Intas 10x10 Tablets
67
+ hf_luray_cream,hf_medicines/hf_hf_luray_cream_4524.jpg,hi+en,medicine_packaging,Luliconazole Cream 1.0% w/w Luray 60gm
68
+ hf_luly_cream,hf_medicines/hf_hf_luly_cream_4883.jpg,hi+en,medicine_packaging,Luliconazole Cream 1% w/w Luly Brinton 15gm
69
+ hf_lircetam_500_tablet,hf_medicines/hf_hf_lircetam_500_tablet_4964.jpg,hi+en,medicine_packaging,Levetiracetam Tablets IP Lircetam 500 Leeford 1x10 Tablets
70
+ hf_anaflam_th__4__tablet,hf_medicines/hf_hf_anaflam_th__4__tablet_351.jpg,hi+en,medicine_packaging,Paracetamol Aceclofenac Thiocolchicoside Tablets Anaflam TH4 Albert David 5x2x10 Tablets
71
+ hf_lipicard_av_tablet,hf_medicines/hf_hf_lipicard_av_tablet_4624.jpg,hi+en,medicine_packaging,Atorvastatin 10mg Fenofibrate 160mg Tablets Lipicard AV USV 10x10 Tablets
72
+ hf_fusiderm_ointment,hf_medicines/hf_hf_fusiderm_ointment_2629.jpg,hi+en,medicine_packaging,Sodium Fusidate Ointment BP Fusiderm Antibiotic Ointment 2.0% w/w 10g
73
+ hf_dezacor_oral_suspension,hf_medicines/hf_hf_dezacor_oral_suspension_1538.jpg,hi+en,medicine_packaging,Deflazacort Oral Suspension 6mg Dezacor 30ml
74
+ hf_aziwok_xl_200_liquid,hf_medicines/hf_hf_aziwok_xl_200_liquid_588.jpg,hi+en,medicine_packaging,Azithromycin Oral Suspension IP 200mg Aziwok XL 200 Liquid Wockhardt Refreshing Mango Flavour
75
+ syn_medicine_packaging_hi_4,synthetic/syn_medicine_packaging_hi_4.png,hi+en,medicine_packaging,Cetirizine 10mg Tablet
76
+ hf_betaloc_25mg_tablet,hf_medicines/hf_hf_betaloc_25mg_tablet_1183.jpg,hi+en,medicine_packaging,Metoprolol Tartrate Tablets IP Betaloc 25mg AstraZeneca
77
+ hf_ledovanc_500_injection,hf_medicines/hf_hf_ledovanc_500_injection_4928.jpg,hi+en,medicine_packaging,Vancomycin Hydrochloride for Intravenous Infusion IP 500mg Ledovanc 500 Celon Labs Powder for Injection
78
+ hf_liquid_parafin,hf_medicines/hf_hf_liquid_parafin_4406.jpg,hi+en,medicine_packaging,Liquid Paraffin Heavy Dose 10 to 30ml Agrawal Drugs
79
+ hf_defelax_syrup,hf_medicines/hf_hf_defelax_syrup_1675.jpg,hi+en,medicine_packaging,Lactitol Monohydrate Syrup 66.67% w/v Defelax 150ml Orange Flavour
80
+ hf_lozivate_cream,hf_medicines/hf_hf_lozivate_cream_4567.jpg,hi+en,medicine_packaging,Clobetasol Cream IP Lozivate 30g
81
+ hf_flumet_1__soap,hf_medicines/hf_hf_flumet_1__soap_2684.jpg,hi+en,medicine_packaging,Fluconazole Soap Flumet Medicated Soap 75g Leeford
82
+ hf_debistal_gm_2_tablet_er,hf_medicines/hf_hf_debistal_gm_2_tablet_er_1452.jpg,hi+en,medicine_packaging,Glimepiride Pioglitazone Metformin Hydrochloride Extended release Tablets Debistal GM 2 Leeford 1x10 Tablets
83
+ hf_lysoflam_tablet,hf_medicines/hf_hf_lysoflam_tablet_4258.jpg,hi+en,medicine_packaging,Diclofenac Potassium Paracetamol Trypsin Chymotrypsin Tablets LysoFlam
84
+ hf_luprodex_depot_3_75mg_injection,hf_medicines/hf_hf_luprodex_depot_3_75mg_injection_4401.jpg,hi+en,medicine_packaging,Leuprolide Acetate for Injection 3.75mg Depot Luprodex 1 month Depot Lyophilized Bharat Serums and Vaccines Limited
85
+ hf_lysoflam_tablet,hf_medicines/hf_hf_lysoflam_tablet_4258.jpg,hi+en,medicine_packaging,Diclofenac Potassium Paracetamol Trypsin Chymotrypsin Tablets LysoFlam
86
+ hf_glz_plus_tablet,hf_medicines/hf_hf_glz_plus_tablet_2908.jpg,hi+en,medicine_packaging,Gliclazide Metformin Hydrochloride Tablets GLZ PLUS Alembic
87
+ hf_ldio_1_m_5mg_10mg_tablet,hf_medicines/hf_hf_ldio_1_m_5mg_10mg_tablet_4424.jpg,hi+en,medicine_packaging,Montelukast Sodium Levocetirizine Hydrochloride Tablets IP L DIO 1 M Unison
88
+ hf_loy_d3_capsule,hf_medicines/hf_hf_loy_d3_capsule_4634.jpg,hi+en,medicine_packaging,Cholecalciferol Capsule USP LoyD3 60K Lloyd
89
+ hf_hh_linctus_ls_expectorant,hf_medicines/hf_hf_hh_linctus_ls_expectorant_3466.jpg,hi+en,medicine_packaging,Ambroxol Hydrochloride HH Linctus LS Bronchodilator Mucolytic For Productive Cough 100ml
90
+ hf_levosiz_m_tablet,hf_medicines/hf_hf_levosiz_m_tablet_4276.jpg,hi+en,medicine_packaging,Montelukast Sodium Levocetirizine Hydrochloride Tablets IP 10mg 5mg Levosiz M Systopic 10x15 Tablets
91
+ hf_lornoxi_p_tablet,hf_medicines/hf_hf_lornoxi_p_tablet_4803.jpg,hi+en,medicine_packaging,Lornoxicam 8mg and Paracetamol 325mg Tablets Lornoxi P Hetero Healthcare
92
+ of_8902080000227,openfoodfacts/of_8902080000227.jpg,en,packaged_goods,Sting Energy
93
+ of_8901030897542,openfoodfacts/of_8901030897542.jpg,en,packaged_goods,Kissan Fresh Tomato Ketchup
94
+ of_8901262040525,openfoodfacts/of_8901262040525.jpg,bn+en,packaged_goods,Amul Shrikhand Delight
95
+ of_3017620425035,openfoodfacts/of_3017620425035.jpg,bn+en,packaged_goods,Nutella 1000G
96
+ of_7622202334009,openfoodfacts/of_7622202334009.jpg,bn+en,packaged_goods,Cadbury Dairy Milk
97
+ syn_packaged_goods_hi_0,synthetic/syn_packaged_goods_hi_0.png,hi+en,packaged_goods,Health Supplement
98
+ syn_signage_en_4,synthetic/syn_signage_en_4.png,en,signage,Eye Care Center
99
+ syn_signage_bn_0,synthetic/syn_signage_bn_0.png,bn+en,signage,Pharmacy
100
+ syn_signage_hi_0,synthetic/syn_signage_hi_0.png,hi+en,signage,Pharmacy
phase4_engine_comparison.json ADDED
The diff for this file is too large to render. See raw diff