Skip to content

Commit

Permalink
update fixing conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
M1Al3x authored Nov 6, 2023
1 parent 6b5771a commit 9ef58f2
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 33 deletions.
22 changes: 0 additions & 22 deletions src/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -389,37 +389,15 @@ def get_recordings_from_paradigm(paradigm, request):

if request.COOKIES.get("synthesized_audio_in_paradigm") == "yes":
speech_db_eq.insert(0, "synth")
<<<<<<< HEAD
query_terms = [query_terms[0], query_terms[1], query_terms[2], query_terms[3],query_terms[4] ]
=======
query_terms = [
query_terms[0],
query_terms[1],
query_terms[2],
query_terms[3],
query_terms[4],
]
>>>>>>> 8154cf57236c3fd90f884b57bf52dee7f01c378d
for search_terms in divide_chunks(query_terms, 30):
for source in speech_db_eq:
temp.append(None)
index = 0
for search_terms in divide_chunks(query_terms, 30):
for source in speech_db_eq:
url = f"https://speech-db.altlab.app/{source}/api/bulk_search"
<<<<<<< HEAD
x = threading.Thread(target=get_recordings_from_url, args=(search_terms, url, temp, index,))
=======
x = threading.Thread(
target=get_recordings_from_url,
args=(
search_terms,
url,
temp,
index,
),
)
>>>>>>> 8154cf57236c3fd90f884b57bf52dee7f01c378d
threads.append(x)
x.start()
index += 1
Expand Down
11 changes: 0 additions & 11 deletions src/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,11 +130,7 @@ def word_details_api(request, slug: str):
if matched_recs:
recordings.extend(matched_recs)
print("here we go")
<<<<<<< HEAD
if paradigm is not None:
=======
if paradigm is not None:
>>>>>>> 8154cf57236c3fd90f884b57bf52dee7f01c378d
FST_DIR = settings.BASE_DIR / "res" / "fst"
paradigm_manager = ParadigmManager(
layout_directory=settings.LAYOUTS_DIR,
Expand Down Expand Up @@ -196,10 +192,7 @@ def search_api(request):
:param request:
:return:
"""
<<<<<<< HEAD

=======
>>>>>>> 8154cf57236c3fd90f884b57bf52dee7f01c378d

query_string = request.GET.get("name")
rw_index = request.GET.get("rw_index")
Expand Down Expand Up @@ -306,10 +299,6 @@ def wordnet_api(request, classification):

return Response(context)

<<<<<<< HEAD
=======

>>>>>>> 8154cf57236c3fd90f884b57bf52dee7f01c378d
def relabelInflectionalCategory(ic):
with open(Path(settings.RESOURCES_DIR / "altlabel.tsv")) as f:
labels = Relabelling.from_tsv(f)
Expand Down

0 comments on commit 9ef58f2

Please sign in to comment.