JuneFeng / RelationClassification-RL

Reinforcement Learning for Relation Classification from Noisy Data(AAAI2018)
134 stars 37 forks source link

what's the meaing of Dao? Is it gradients? #4

Open FrankWork opened 6 years ago

FrankWork commented 6 years ago

For example

matrixRelationDao = (float *)calloc(dimensionC*relationTotal, sizeof(float));
matrixW1Dao =  (float*)calloc(dimensionC * dimension * window, sizeof(float));
matrixB1Dao =  (float*)calloc(dimensionC, sizeof(float));

updateMatrixRelation = (float *)calloc(dimensionC*relationTotal, sizeof(float));
updateMatrixW1 =  (float*)calloc(dimensionC * dimension * window, sizeof(float));
updateMatrixB1 =  (float*)calloc(dimensionC, sizeof(float));
shubhamjha97 commented 6 years ago

The variables whose names end with "Dao" are the parameters of the target networks.