Index

Definition

The Council of Elders (COE) is a decentralized, autonomous organization (DAO) that runs on social consensus & legitimacy. The council has full discretion of the COE treasury,

<aside> 💡 Feature exposure and max feature exposure are similar but not exactly the same

</aside>

Code Snippet

You can add code notation to any Notion page:

def feature_exposures(df):
    feature_names = [f for f in df.columns
                     if f.startswith("feature")]
    exposures = []
    for f in feature_names:
        fe = spearmanr(df[PREDICTION_NAME], df[f])[0]
        exposures.append(fe)
    return np.array(exposures)

Citations & Other Resources

Numerai Forums

Model Diagnostics: Feature Exposure

An introduction to feature neutralization / exposure

Other Resources