Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enhancement/591 Previewing of OpenAI Embeddings #622

Merged
merged 25 commits into from
Dec 12, 2023
Merged
Show file tree
Hide file tree
Changes from 20 commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
83e4215
run an ajax for preview
faisal-alvi Nov 24, 2023
390037f
init dry run for embedding terms
faisal-alvi Nov 24, 2023
d07faa8
return terms instead of saving
faisal-alvi Nov 24, 2023
3a128ae
display the preivew snippet on the tab
faisal-alvi Nov 24, 2023
2b6e488
check for nonce
faisal-alvi Nov 24, 2023
cd1862d
handle the client side actions
faisal-alvi Nov 24, 2023
64a02fb
add e2e test
faisal-alvi Nov 24, 2023
40ae9a7
eslint fixes
faisal-alvi Nov 24, 2023
6f777cf
fix e2e tests
faisal-alvi Nov 24, 2023
0060ddf
fix eslint errors
faisal-alvi Nov 24, 2023
35aeebc
typo fix
faisal-alvi Nov 24, 2023
3e28c0c
correct the function doc
faisal-alvi Nov 28, 2023
28d14bf
dry run with a seprate function
faisal-alvi Nov 28, 2023
38c5b99
code improvements
faisal-alvi Nov 28, 2023
7bd994f
Update since version
dkotter Nov 28, 2023
928f88d
Merge branch 'develop' into enhancement/591
dkotter Nov 28, 2023
e86a213
remove unnecssary -ve left margin
faisal-alvi Nov 29, 2023
4fd02c1
fix the provide class selection
faisal-alvi Nov 29, 2023
d7dc76b
handle the classification names
faisal-alvi Nov 29, 2023
e04e66e
remove unnecessary code
faisal-alvi Nov 29, 2023
c79ec83
Merge branch 'develop' into enhancement/591
dkotter Dec 7, 2023
ae66799
Ensure we always trim our calculations results down to 1.0 instead of…
dkotter Dec 7, 2023
bcee113
fix the issue
faisal-alvi Dec 8, 2023
df0d677
dont consider threshold for preview
faisal-alvi Dec 8, 2023
faff524
Merge branch 'develop' into enhancement/591
dkotter Dec 8, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions includes/Classifai/Admin/PreviewClassifierData.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public function __construct() {
public function get_post_classifier_preview_data() {
$nonce = isset( $_POST['nonce'] ) ? sanitize_text_field( wp_unslash( $_POST['nonce'] ) ) : false;

if ( ! $nonce || ! wp_verify_nonce( $nonce, 'classifai-previewer-action' ) ) {
if ( ! $nonce || ! wp_verify_nonce( $nonce, 'classifai-previewer-watson_nlu-action' ) ) {
wp_send_json_error( esc_html__( 'Failed nonce check.', 'classifai' ) );
}

Expand All @@ -44,7 +44,13 @@ public function get_post_classifier_preview_data() {
public function get_post_search_results() {
$nonce = isset( $_POST['nonce'] ) ? sanitize_text_field( wp_unslash( $_POST['nonce'] ) ) : false;

if ( ! $nonce || ! wp_verify_nonce( $nonce, 'classifai-previewer-action' ) ) {
if (
! $nonce
|| (
! wp_verify_nonce( $nonce, 'classifai-previewer-openai_embeddings-action' )
&& ! wp_verify_nonce( $nonce, 'classifai-previewer-watson_nlu-nonce' )
)
) {
wp_send_json_error( esc_html__( 'Failed nonce check.', 'classifai' ) );
}

Expand Down
158 changes: 135 additions & 23 deletions includes/Classifai/Providers/OpenAI/Embeddings.php
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,7 @@ public function register() {
add_filter( 'rest_api_init', [ $this, 'add_process_content_meta_to_rest_api' ] );
add_action( 'add_meta_boxes', [ $this, 'add_metabox' ] );
add_action( 'save_post', [ $this, 'save_metabox' ] );
add_action( 'wp_ajax_get_post_classifier_embeddings_preview_data', array( $this, 'get_post_classifier_embeddings_preview_data' ) );
}
}

Expand Down Expand Up @@ -392,12 +393,36 @@ public function supported_taxonomies() {
return apply_filters( 'classifai_openai_embeddings_taxonomies', $this->get_supported_taxonomies() );
}

/**
* Get the data to preview terms.
*
* @since 2.5.0
*
* @return array
*/
public function get_post_classifier_embeddings_preview_data() {
$nonce = isset( $_POST['nonce'] ) ? sanitize_text_field( wp_unslash( $_POST['nonce'] ) ) : false;

if ( ! $nonce || ! wp_verify_nonce( $nonce, 'classifai-previewer-openai_embeddings-action' ) ) {
wp_send_json_error( esc_html__( 'Failed nonce check.', 'classifai' ) );
}

$post_id = filter_input( INPUT_POST, 'post_id', FILTER_SANITIZE_NUMBER_INT );

$embeddings_terms = $this->generate_embeddings_for_post( $post_id, true );

return wp_send_json_success( $embeddings_terms );
}

/**
* Trigger embedding generation for content being saved.
*
* @param int $post_id ID of post being saved.
* @param int $post_id ID of post being saved.
* @param bool $dryrun Whether to run the process or just return the data.
*
* @return array|WP_Error
*/
public function generate_embeddings_for_post( $post_id ) {
public function generate_embeddings_for_post( $post_id, $dryrun = false ) {
// Don't run on autosaves.
if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) {
return;
Expand All @@ -412,23 +437,30 @@ public function generate_embeddings_for_post( $post_id ) {

// Only run on supported post types and statuses.
if (
! in_array( $post->post_type, $this->supported_post_types(), true ) ||
! in_array( $post->post_status, $this->supported_post_statuses(), true )
! $dryrun
&& (
! in_array( $post->post_type, $this->supported_post_types(), true ) ||
! in_array( $post->post_status, $this->supported_post_statuses(), true )
)
) {
return;
}

// Don't run if turned off for this particular post.
if ( 'no' === get_post_meta( $post_id, '_classifai_process_content', true ) ) {
if ( 'no' === get_post_meta( $post_id, '_classifai_process_content', true ) && ! $dryrun ) {
return;
}

$embeddings = $this->generate_embeddings( $post_id, 'post' );

// Add terms to this item based on embedding data.
if ( $embeddings && ! is_wp_error( $embeddings ) ) {
update_post_meta( $post_id, 'classifai_openai_embeddings', array_map( 'sanitize_text_field', $embeddings ) );
$this->set_terms( $post_id, $embeddings );
if ( $dryrun ) {
return $this->get_terms( $embeddings );
} else {
update_post_meta( $post_id, 'classifai_openai_embeddings', array_map( 'sanitize_text_field', $embeddings ) );
return $this->set_terms( $post_id, $embeddings );
}
}
}

Expand All @@ -449,6 +481,101 @@ private function set_terms( int $post_id = 0, array $embedding = [] ) {

$settings = $this->get_settings();
$number_to_add = $settings['number'] ?? 1;
$embedding_similarity = $this->get_embeddings_similarity( $embedding );

if ( empty( $embedding_similarity ) ) {
return;
}

// Set terms based on similarity.
foreach ( $embedding_similarity as $tax => $terms ) {
// Sort embeddings from lowest to highest.
asort( $terms );

// Only add the number of terms specified in settings.
if ( count( $terms ) > $number_to_add ) {
$terms = array_slice( $terms, 0, $number_to_add, true );
}

wp_set_object_terms( $post_id, array_map( 'absint', array_keys( $terms ) ), $tax, false );
}
}

/**
* Get the terms of a post based on embeddings.
*
* @param array $embedding Embedding data.
*
* @return array|WP_Error
*/
private function get_terms( array $embedding = [] ) {
if ( empty( $embedding ) ) {
return new WP_Error( 'data_required', esc_html__( 'Valid embedding data is required to get terms.', 'classifai' ) );
}

$settings = $this->get_settings();
$number_to_add = $settings['number'] ?? 1;
$embedding_similarity = $this->get_embeddings_similarity( $embedding );

if ( empty( $embedding_similarity ) ) {
return;
}

// Set terms based on similarity.
$index = 0;
$result = [];

foreach ( $embedding_similarity as $tax => $terms ) {
// Get the taxonomy name.
$taxonomy = get_taxonomy( $tax );
$tax_name = $taxonomy->labels->singular_name;

// Sort embeddings from lowest to highest.
asort( $terms );

// Return the terms.
$result[ $index ] = new \stdClass();

$result[ $index ]->{$tax_name} = [];

$term_added = 0;
foreach ( $terms as $term_id => $similarity ) {
// Convert $similarity to percentage.
$similarity = round( ( 1 - $similarity ), 2 );

// Stop if we have added the number of terms specified in settings.
if ( $number_to_add <= $term_added ) {
break;
}

$result[ $index ]->{$tax_name}[] = [// phpcs:ignore Squiz.PHP.DisallowMultipleAssignments.Found
'label' => get_term( $term_id )->name,
'score' => $similarity,
];
$term_added++;
}

// Only add the number of terms specified in settings.
if ( count( $terms ) > $number_to_add ) {
$terms = array_slice( $terms, 0, $number_to_add, true );
}

$index++;
}

return $result;
}

/**
* Get the similarity between an embedding and all terms.
*
* @since 2.5.0
*
* @param array $embedding Embedding data.
*
* @return array
*/
private function get_embeddings_similarity( $embedding ) {
$embedding_similarity = [];
$taxonomies = $this->supported_taxonomies();
$calculations = new EmbeddingCalculations();
Expand Down Expand Up @@ -485,22 +612,7 @@ private function set_terms( int $post_id = 0, array $embedding = [] ) {
}
}

if ( empty( $embedding_similarity ) ) {
return;
}

// Set terms based on similarity.
foreach ( $embedding_similarity as $tax => $terms ) {
// Sort embeddings from lowest to highest.
asort( $terms );

// Only add the number of terms specified in settings.
if ( count( $terms ) > $number_to_add ) {
$terms = array_slice( $terms, 0, $number_to_add, true );
}

wp_set_object_terms( $post_id, array_map( 'absint', array_keys( $terms ) ), $tax, false );
}
return $embedding_similarity;
}

/**
Expand Down
35 changes: 25 additions & 10 deletions includes/Classifai/Services/Service.php
Original file line number Diff line number Diff line change
Expand Up @@ -151,8 +151,17 @@ public function render_settings_page() {
<?php
// Find the right provider class.
$provider = find_provider_class( $this->provider_classes ?? [], 'Natural Language Understanding' );

if ( ! is_wp_error( $provider ) && ! empty( $provider->can_register() ) && $provider->is_feature_enabled( 'content_classification' ) ) :
if ( 'openai_embeddings' === $active_tab ) {
$provider = find_provider_class( $this->provider_classes ?? [], 'Embeddings' );
}

if (
! is_wp_error( $provider )
&& ! empty(
$provider->can_register()
&& ( $provider->is_feature_enabled( 'content_classification' ) || $provider->is_feature_enabled( 'classification' ) )
)
) :
?>
<div id="classifai-post-preview-app">
<?php
Expand Down Expand Up @@ -191,26 +200,32 @@ public function render_settings_page() {
);
?>

<?php if ( 'watson_nlu' === $active_tab ) : ?>
<?php if ( 'watson_nlu' === $active_tab || 'openai_embeddings' === $active_tab ) : ?>
<h2><?php esc_html_e( 'Preview Language Processing', 'classifai' ); ?></h2>
<div id="classifai-post-preview-controls">
<select id="classifai-preview-post-selector">
<?php foreach ( $posts_to_preview as $post ) : ?>
<option value="<?php echo esc_attr( $post->ID ); ?>"><?php echo esc_html( $post->post_title ); ?></option>
<?php endforeach; ?>
</select>
<?php wp_nonce_field( 'classifai-previewer-action', 'classifai-previewer-nonce' ); ?>
<?php wp_nonce_field( "classifai-previewer-$active_tab-action", "classifai-previewer-$active_tab-nonce" ); ?>
<button type="button" class="button" id="get-classifier-preview-data-btn">
<span><?php esc_html_e( 'Preview', 'classifai' ); ?></span>
</button>
</div>
<div id="classifai-post-preview-wrapper">
<?php foreach ( $features as $feature_slug => $feature ) : ?>
<div class="tax-row tax-row--<?php echo esc_attr( $feature['plural'] ); ?> <?php echo esc_attr( $feature['enabled'] ) ? '' : 'tax-row--hide'; ?>">
<div class="tax-type"><?php echo esc_html( $feature['name'] ); ?></div>
</div>
<?php endforeach; ?>
</div>
<?php
if ( 'watson_nlu' === $active_tab ) :
foreach ( $features as $feature_slug => $feature ) :
?>
<div class="tax-row tax-row--<?php echo esc_attr( $feature['plural'] ); ?> <?php echo esc_attr( $feature['enabled'] ) ? '' : 'tax-row--hide'; ?>">
<div class="tax-type"><?php echo esc_html( $feature['name'] ); ?></div>
</div>
<?php
endforeach;
endif;
?>
</div>
<?php endif; ?>
</div>
<?php endif; ?>
Expand Down
Loading
Loading