Bohaska commited on
Commit
9df16aa
·
1 Parent(s): a5dfc53

make similarity gradio app

Browse files
.idea/.gitignore ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ # Default ignored files
2
+ /shelf/
3
+ /workspace.xml
.idea/inspectionProfiles/Project_Default.xml ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <component name="InspectionProjectProfileManager">
2
+ <profile version="1.0">
3
+ <option name="myName" value="Project Default" />
4
+ <inspection_tool class="PyPep8NamingInspection" enabled="true" level="WEAK WARNING" enabled_by_default="true">
5
+ <option name="ignoredErrors">
6
+ <list>
7
+ <option value="N806" />
8
+ </list>
9
+ </option>
10
+ </inspection_tool>
11
+ <inspection_tool class="PyUnresolvedReferencesInspection" enabled="true" level="WARNING" enabled_by_default="true">
12
+ <option name="ignoredIdentifiers">
13
+ <list>
14
+ <option value="nextcord.ui.view.View.*" />
15
+ <option value="typing.Coroutine.__getitem__" />
16
+ </list>
17
+ </option>
18
+ </inspection_tool>
19
+ </profile>
20
+ </component>
.idea/inspectionProfiles/profiles_settings.xml ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ <component name="InspectionProjectProfileManager">
2
+ <settings>
3
+ <option name="USE_PROJECT_PROFILE" value="false" />
4
+ <version value="1.0" />
5
+ </settings>
6
+ </component>
.idea/misc.xml ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <project version="4">
3
+ <component name="ProjectRootManager" version="2" project-jdk-name="Python 3.9 (ns_issue_search)" project-jdk-type="Python SDK" />
4
+ </project>
.idea/modules.xml ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <project version="4">
3
+ <component name="ProjectModuleManager">
4
+ <modules>
5
+ <module fileurl="file://$PROJECT_DIR$/.idea/ns_issue_search.iml" filepath="$PROJECT_DIR$/.idea/ns_issue_search.iml" />
6
+ </modules>
7
+ </component>
8
+ </project>
.idea/ns_issue_search.iml ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <module type="PYTHON_MODULE" version="4">
3
+ <component name="NewModuleRootManager">
4
+ <content url="file://$MODULE_DIR$">
5
+ <excludeFolder url="file://$MODULE_DIR$/venv" />
6
+ </content>
7
+ <orderEntry type="inheritedJdk" />
8
+ <orderEntry type="sourceFolder" forTests="false" />
9
+ </component>
10
+ </module>
.idea/vcs.xml ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <project version="4">
3
+ <component name="VcsDirectoryMappings">
4
+ <mapping directory="$PROJECT_DIR$" vcs="Git" />
5
+ </component>
6
+ </project>
app.py CHANGED
@@ -1,62 +1,44 @@
1
  import gradio as gr
2
- from huggingface_hub import InferenceClient
 
3
 
4
- """
5
- For more information on `huggingface_hub` Inference API support, please check the docs: https://huggingface.co/docs/huggingface_hub/v0.22.2/en/guides/inference
6
- """
7
- client = InferenceClient("HuggingFaceH4/zephyr-7b-beta")
8
-
9
-
10
- def respond(
11
- message,
12
- history: list[tuple[str, str]],
13
- system_message,
14
- max_tokens,
15
- temperature,
16
- top_p,
17
- ):
18
- messages = [{"role": "system", "content": system_message}]
19
 
20
- for val in history:
21
- if val[0]:
22
- messages.append({"role": "user", "content": val[0]})
23
- if val[1]:
24
- messages.append({"role": "assistant", "content": val[1]})
25
 
26
- messages.append({"role": "user", "content": message})
27
 
28
- response = ""
 
 
 
 
 
 
 
 
 
29
 
30
- for message in client.chat_completion(
31
- messages,
32
- max_tokens=max_tokens,
33
- stream=True,
34
- temperature=temperature,
35
- top_p=top_p,
36
- ):
37
- token = message.choices[0].delta.content
38
 
39
- response += token
40
- yield response
41
 
42
 
43
  """
44
  For information on how to customize the ChatInterface, peruse the gradio docs: https://www.gradio.app/docs/chatinterface
45
  """
46
- demo = gr.ChatInterface(
47
- respond,
48
- additional_inputs=[
49
- gr.Textbox(value="You are a friendly Chatbot.", label="System message"),
50
- gr.Slider(minimum=1, maximum=2048, value=512, step=1, label="Max new tokens"),
51
- gr.Slider(minimum=0.1, maximum=4.0, value=0.7, step=0.1, label="Temperature"),
52
- gr.Slider(
53
- minimum=0.1,
54
- maximum=1.0,
55
- value=0.95,
56
- step=0.05,
57
- label="Top-p (nucleus sampling)",
58
- ),
59
- ],
60
  )
61
 
62
 
 
1
  import gradio as gr
2
+ from FlagEmbedding import BGEM3FlagModel
3
+ import numpy as np
4
 
5
+ model = BGEM3FlagModel('BAAI/bge-m3',
6
+ use_fp16=True) # Setting use_fp16 to True speeds up computation with a slight performance degradation
7
+ issue_embeddings = np.load('ns_issues_dense_bge-m3.npy')
 
 
 
 
 
 
 
 
 
 
 
 
8
 
9
+ def get_similarity(search_term):
10
+ search_embedding = model.encode([search_term])['dense_vecs']
11
+ similarity = search_embedding @ issue_embeddings.T
12
+ return similarity
 
13
 
 
14
 
15
+ def get_similarity_rankings(search_term):
16
+ similarity = get_similarity(search_term)
17
+ search_sentence = [search_term]
18
+ results = []
19
+ for i, search_query_similarities in enumerate(similarity):
20
+ indexed_similarities = []
21
+ for issue_index, sim_score in enumerate(search_query_similarities):
22
+ indexed_similarities.append((issue_index, sim_score))
23
+ sorted_similarities = sorted(indexed_similarities, key=lambda item: item[1], reverse=True)
24
+ results.append(sorted_similarities)
25
 
26
+ similarity_text = ""
27
+ for i, search_query_result in enumerate(results):
28
+ similarity_text += f"Search Query: {search_sentence[i]}"
29
+ for index, sim_score in search_query_result[:20]:
30
+ similarity_text += f"\nIssue {index}, Similarity: {sim_score:.4f}"
 
 
 
31
 
32
+ return similarity_text
 
33
 
34
 
35
  """
36
  For information on how to customize the ChatInterface, peruse the gradio docs: https://www.gradio.app/docs/chatinterface
37
  """
38
+ demo = gr.Interface(
39
+ get_similarity_rankings,
40
+ inputs=["text"],
41
+ outputs=["text"],
 
 
 
 
 
 
 
 
 
 
42
  )
43
 
44
 
ns_issues_dense_bge-m3.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7f1b40ff8445d9b7ce7c4018094b8480bfde110741d67111bbd5a3e990c8da62
3
+ size 3399808
requirements.txt CHANGED
@@ -1 +1,3 @@
1
- huggingface_hub==0.25.2
 
 
 
1
+ huggingface_hub==0.25.2
2
+ FlagEmbedding
3
+ gradio