You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I would like to use the representations for a custom data in downstream clustering. But i don't see how i can obtain the sentence representations using your method. Any help will be appreciated. Thanks in advance..
The text was updated successfully, but these errors were encountered:
Hi John,
You can simply run ./example.sh to see the example for extracting sentence representation for an input sentence.
It should be easily edited for your specific task.
@BinWang28 thank you for responding. I have already tried the example.sh file and run it before. The default setting is to ask for 2 sentences and return a similarity score. However, I have 5000 records or tuples and would not enter this manually for each sentence/ record. Moreover, what I am looking for are the sentence representations themselves, i.e., sentence vectors of my records and not the similarity score. Could you elaborate a process in which the code could be modified? Thanks.
Hi John,
That's a good starting point if you can make the example code working. You do not need to to manually input all the sentences. What you need to do is (in python scripts):
Read all your 5000 records/sentences
Write a for loop to extract each of the record/sentence embeddings one by one. (simply modification on the example code)
Use the sentence embedding in the your applications
I would like to use the representations for a custom data in downstream clustering. But i don't see how i can obtain the sentence representations using your method. Any help will be appreciated. Thanks in advance..
The text was updated successfully, but these errors were encountered: