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

docs: Added coordination point for Jimmy Lee #1253

Merged
merged 1 commit into from
Sep 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
3 changes: 2 additions & 1 deletion docs/mmteb/points.md
Original file line number Diff line number Diff line change
Expand Up @@ -121,4 +121,5 @@ Please also add your first name and last name are as you want them to appear in
| thakur-nandan | Nandan | Thakur | | ~Nandan_Thakur1 | University of Waterloo |
| loicmagne | Loic | Magne | ~Loïc_Magne1 |Individual Contributor |
| sarahooker | Sara | Hooker | | ~Sara_Hooker2 | Cohere For AI |
| kwojtasi | Konrad | Wojtasik | ~Konrad_Wojtasik1 | Wrocław University of Science and Technology |
| kwojtasi | Konrad | Wojtasik | ~Konrad_Wojtasik1 | Wrocław University of Science and Technology |
| tmp_handle | Jimmy | Lin | ~Jimmy_Lin2 | University of Waterloo |
1 change: 1 addition & 0 deletions docs/mmteb/points/1252.jsonl
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"GitHub": "tmp_handle", "Coordination": 10}
6 changes: 4 additions & 2 deletions scripts/mmteb_create_author_list.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -907,7 +907,7 @@
" affiations[aff] = aff_id\n",
" aff_id += 1\n",
" aff_string += f\"{affiations[aff]},\"\n",
" \n",
"\n",
" # remove last comma\n",
" aff_string = aff_string[:-1]\n",
"\n",
Expand Down Expand Up @@ -936,7 +936,9 @@
"last_author2 = \"Siva\"\n",
"last_author__ = [a for a in author_list if last_author2 in a][0]\n",
"# remove from author list\n",
"author_list = [a for a in author_list if last_author1 not in a and last_author2 not in a]\n",
"author_list = [\n",
" a for a in author_list if last_author1 not in a and last_author2 not in a\n",
"]\n",
"\n",
"author_list.append(last_author__)\n",
"author_list.append(last_author_)"
Expand Down
Loading