Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions v1/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ This directory contains the templates for v1. Each template folder includes its
| [campaign_roi](./campaign_roi/) | Reallocate marketing campaign budgets across regions to maximize conversions, with per-campaign floor and cap constraints and a regional cap on a paused region. |
| [cicd_runner_allocation](./cicd_runner_allocation/) | Assign CI/CD workflow jobs to the cheapest compatible runner type, subject to concurrency limits, with scenario analysis across capacity levels. |
| [commercial_underwriting](./commercial_underwriting/) | Run rules-based eligibility checks and risk-tier classification across a four-level commercial property/casualty hierarchy (insured entity, policy, location, coverage). |
| [demand_forecasting](./demand_forecasting/) | Forecast next-period unit sales per (store, item, day) with a regression GNN over a heterogeneous retail knowledge graph: sales transactions linked to stores, items, and item families so the GNN propagates signal through the store and product hierarchies. |
| [demand_planning_temporal](./demand_planning_temporal/) | Plan weekly production and inventory across sites over a date-filtered planning horizon to minimize total cost while meeting demand. |
| [diet](./diet/) | Select foods to satisfy nutritional requirements at minimum cost. |
| [disease-outbreak-prevention](./disease-outbreak-prevention/) | Use weighted degree centrality to identify the highest-risk healthcare facilities in a public health network, considering both connection volume and intensity, to prioritize resource deployment during disease outbreaks. |
Expand All @@ -30,6 +31,7 @@ This directory contains the templates for v1. Each template folder includes its
| [shipment_compliance](./shipment_compliance/) | Define derived business rules for shipment compliance, sourcing risk, and demand escalation. |
| [simple-start](./simple-start/) | A minimal notebook to connect to Snowflake, model a small graph, and compute betweenness centrality with RelationalAI. |
| [sprint_scheduling](./sprint_scheduling/) | Assign backlog issues to developers across sprints, minimizing weighted completion time while respecting capacity and skill constraints. |
| [subscriber_retention](./subscriber_retention/) | Telco churn-risk scoring: PageRank over a Subscriber→Subscriber call graph (Graph) plus aggregate-derived call-volume features feed a regression GNN (Predictive) that scores per-subscriber churn risk, then surfaces the highest-risk subscribers per segment for retention campaigns. |
| [supplier_reliability](./supplier_reliability/) | Select suppliers to meet product demand while balancing cost and reliability. |
| [supply_chain_resilience](./supply_chain_resilience/) | A multi-reasoner template that chains blast-radius reachability, graph analysis, rules-based classification, and prescriptive optimization to build a risk-adjusted minimum-cost network flow for supply chain routing. |
| [supply_chain_transport](./supply_chain_transport/) | Minimize inventory holding and transport costs with TL/LTL mode selection. |
Expand Down
366 changes: 366 additions & 0 deletions v1/demand_forecasting/README.md

Large diffs are not rendered by default.

26 changes: 26 additions & 0 deletions v1/demand_forecasting/data/favorita_mini/items.csv
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
item_id,family,item_class,perishable
1,BEVERAGES,1803,False
2,BEVERAGES,7964,False
3,BEVERAGES,6890,False
4,BEVERAGES,4949,False
5,BEVERAGES,4896,False
6,DAIRY,8726,True
7,DAIRY,1773,True
8,DAIRY,7275,True
9,DAIRY,2813,True
10,DAIRY,1847,True
11,GROCERY,5737,False
12,GROCERY,9779,False
13,GROCERY,7621,False
14,GROCERY,7849,False
15,GROCERY,7456,False
16,BAKERY,8073,True
17,BAKERY,5618,True
18,BAKERY,2152,True
19,BAKERY,8556,True
20,BAKERY,5053,True
21,CLEANING,5502,False
22,CLEANING,4336,False
23,CLEANING,2642,False
24,CLEANING,9339,False
25,CLEANING,8033,False
Loading
Loading