CoolFace
Datasetpublic

rishirajpathak/warehouse-inventory-management

Warehouse & Inventory Management Dataset Abstract This dataset provides 30,000 simulated warehouse-level observations (10,000 per scenario) of health commodity storage, inventory management, and warehousing performance across three tiers of the pharmaceutical supply chain in sub-Saharan Africa. Each record represents one commodity category assessed at one warehouse during one monthly period. The dataset captures 40+ variables spanning warehouse infrastructure… See the full description on the dataset page: https://huggingface.co/datasets/rishirajpathak/warehouse-inventory-management.

sourceHugging Facecc-by-4.0updated 5mo agoView on Hugging Face
0likes67downloads
Dataset Card

Warehouse & Inventory Management Dataset

Abstract

This dataset provides 30,000 simulated warehouse-level observations (10,000 per scenario) of health commodity storage, inventory management, and warehousing performance across three tiers of the pharmaceutical supply chain in sub-Saharan Africa. Each record represents one commodity category assessed at one warehouse during one monthly period. The dataset captures 40+ variables spanning warehouse infrastructure, storage conditions, inventory accuracy, FEFO compliance, order fulfilment, wastage (expiry + damage), capacity utilisation, temperature excursions, pest damage, theft, and downstream facility impact. Three scenarios: national CMS (82% inventory accuracy), regional warehouse (55%), district store (28%).

This dataset is entirely simulated. It must not be used for warehouse operations or procurement decisions.

1. Introduction

1.1 Warehouse Management in Health Supply Chains

Warehousing is the critical link between procurement and last-mile distribution. USAID GHSC-PSM has documented that effective warehouse management — including proper storage conditions, inventory accuracy, and FEFO (First Expiry, First Out) compliance — directly impacts commodity availability at health facilities.

1.2 Storage Conditions

WHO Good Distribution Practices (GDP) require controlled temperature, humidity, pest management, and security for pharmaceutical storage. However, UNICEF Supply Division assessments indicate that only 40-60% of SSA warehouses meet WHO GDP standards, with district-level stores frequently lacking basic infrastructure including temperature monitoring, generator backup, and pest control.

1.3 Inventory Accuracy and Wastage

Stock record discrepancies between physical counts and records are widespread, with inventory accuracy as low as 25-30% at district stores. Wastage from expired and damaged stock reaches 15-30% at sub-national levels, representing significant financial losses and contributing to downstream stockouts.

1.4 Rationale

This dataset integrates warehouse infrastructure, storage quality, inventory management performance, and downstream impact indicators for supply chain optimization research and warehouse management system development.

2. Methodology

2.1 Parameterization

ParameterNational CMSRegional WHDistrict StoreSource
Inventory accuracy82%55%28%JSI/SIAPS assessments
Order fulfilment78%52%30%GHSC-PSM data
Wastage rate8%18%30%Warehouse audits
Storage adequate75%42%15%UNICEF assessments
FEFO compliance70%35%10%WHO GDP audits
Capacity utilisation85%65%40%Infrastructure data

2.2 Commodity Categories

12 categories: essential medicines, ARVs, vaccines (cold chain), laboratory reagents (cold chain), contraceptives, malaria commodities, IV fluids, PPE/IPC supplies, surgical supplies, nutrition commodities, medical device consumables, controlled substances (secure storage).

3. Schema

ColumnTypeDescription
warehouse_levelcategoricalnationalCMS / regionalwarehouse / district_store
warehousesizesqmintStorage area in square metres
commodity_categorycategorical12 commodity categories
storage_requirementcategoricalambient / coldchain28C / secureambient
criticalitycategoricalcritical / high / medium / low
has_WMSbinaryWarehouse management system
hastemperaturemonitoringbinaryTemperature monitoring
hasgeneratorbackupbinaryBackup power
storageconditionsadequatebinaryMeets GDP standards
inventoryaccuracypctfloatPhysical vs record match
stockrecorduptodatebinaryRecords current
fefo_compliancebinaryFEFO practiced
orderfulfilmentrate_pctfloatOrders fulfilled completely
orders_backorderedintUnfulfilled orders
wastageratepctfloatExpired + damaged rate
expiredstockvalue_usdfloatValue of expired stock
capacityutilisationpctfloatSpace used
temperatureexcursionmonthintCold chain breaks
pestdamagereportedbinaryPest damage
theft_reportedbinaryTheft/pilferage
inventory_issuecategorical11 issue categories
stockoutatwarehousebinaryWarehouse-level stockout
facilitiesaffectedby_stockoutintDownstream facilities impacted

4. Validation

<p align="center"> <img src="validation_report.png" alt="Validation Report" width="100%"> </p>

5. Usage

python
from datasets import load_dataset

dataset = load_dataset(
    "electricsheepafrica/warehouse-inventory-management",
    "regional_warehouse"
)
df = dataset["train"].to_pandas()

# Wastage by commodity category
print(df.groupby('commodity_category')['wastage_rate_pct'].mean().sort_values(ascending=False))

6. Limitations

  • Simulated: Not from real WMS data or warehouse audits.
  • No seasonal effects: Humidity/temperature seasonal variation not modelled.
  • Simplified costing: Wastage costs are estimates, not actual financial records.

7. References

  1. 1.USAID GHSC-PSM. Warehouse management best practices.
  2. 2.WHO (2014). Good storage and distribution practices (GDP).
  3. 3.JSI/SIAPS. Strengthening pharmaceutical supply chains.
  4. 4.UNICEF Supply Division. Warehouse capacity assessments.

Citation

bibtex
@dataset{esa_warehouse_inventory_2025,
  title   = {Warehouse and Inventory Management Dataset},
  author  = {{Electric Sheep Africa}},
  year    = {2025},
  publisher = {Hugging Face},
  url     = {https://huggingface.co/datasets/electricsheepafrica/warehouse-inventory-management},
  note    = {Simulated dataset. Not for warehouse operations or procurement decisions.}
}

License

CC-BY-4.0