File size: 1,316 Bytes
a9c377f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
---
language: en
license: mit
tags:
  - project-management
  - risk-analysis
  - transformer
  - pytorch
pipeline_tag: text-generation
---

# PMReasoner

PMReasoner is a 125.3M parameter transformer trained from scratch to perform project risk
analysis. It takes a structured project plan (from PMPlanner) and outputs a JSON risk
assessment: overall health (green/yellow/red), top risks, critical path analysis, and
actionable recommendations.

## Model Details

| Property | Value |
|---|---|
| Parameters | 125.3M |
| Architecture | Custom encoder-decoder transformer |
| Training data | 28,000+ PM scenarios with risk annotations |
| Output format | Structured JSON (health, risks, critical_path, recommendations) |
| License | MIT |

## Usage

PMReasoner is part of the PMCore pipeline. Use via the API:

```bash
curl -X POST http://localhost:8765/plan/quick \
  -H "Content-Type: application/json" \
  -d '{"request": "Migrate enterprise from on-prem to cloud, 18 months, $15M budget."}'
```

Response includes both planner and reasoner output:
```json
{
  "planner": {"methodology": "hybrid", "num_tasks": 47, ...},
  "reasoner": {"overall_health": "yellow", "top_risks": ["vendor lock-in", ...], ...}
}
```

## Full Pipeline

See [PMCore on GitHub](https://github.com/snavazio/pmcore) for full documentation.