Add the following to your theme's functions.php file if you want to disable the Review Notice from appearing:
/**
* Disable YARPP Review Notice
*
*/
function yarpp_disable_review_notice() {
remove_action('admin_notices', array('YARPP_Admin', 'display_review_notice'));
}
add_action('admin_init', 'yarpp_disable_review_notice', 11);