Created
June 8, 2020 04:21
-
-
Save eustin/53c10e7105cfd854b55a89a8d8f90fdb to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
docs_sequences = [] | |
for docs_list in [bing_search_results, google_search_results]: | |
docs_sequences.append(tokeniser.texts_to_sequences(docs_list)) | |
docs_embeddings = [] | |
for docs_set in docs_sequences: | |
this_docs_set = [] | |
for doc in docs_set: | |
this_doc_embeddings = np.array([embeddings[idx] for idx in doc]) | |
this_docs_set.append(this_doc_embeddings) | |
docs_embeddings.append(this_docs_set) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment