chronulus_core.types.risk
RiskCategory
Bases: BaseModel
Describes a Risk Category referenced in a risk Scorecard
Parameters:
Name | Type | Description | Default |
---|---|---|---|
name
|
str
|
Name of the category |
required |
score
|
Numeric score of the category |
required | |
max_score
|
float
|
The maximum score achievable in this category |
required |
risks
|
The list of risk factors identified in this category |
required |
Source code in src2/chronulus_core/types/risk.py
Scorecard
Bases: BaseModel
The risk assessment scorecard for a Session
Our risk scorecard is based on the Responsible Forecast framework (Rostami-Tabar et al., 2024).
Citations
Rostami-Tabar, B., Greene, T., Shmueli, G., & Hyndman, R. J. (2024). Responsible forecasting: identifying and typifying forecasting harms. arXiv preprint arXiv:2411.16531.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
categories
|
List[RiskCategory]
|
A list of categories |
required |
assessment
|
Overall assessment of the risk for the session |
required | |
recommendation
|
str
|
Recommendations and risk mitigation strategies for risks highlighted in the assessment |
required |
Attributes:
Name | Type | Description |
---|---|---|
categories |
List[RiskCategory]
|
A list of categories |
assessment |
str
|
Overall assessment of the risk for the session |
recommendation |
str
|
Recommendations and risk mitigation strategies for risks highlighted in the assessment |