Skip to content

Commit

Permalink
Merge pull request #20 from ElenaRyumina/main
Browse files Browse the repository at this point in the history
Summary
  • Loading branch information
DmitryRyumin authored Dec 15, 2023
2 parents 33929c5 + 27075d2 commit 54289c4
Show file tree
Hide file tree
Showing 9 changed files with 2,075 additions and 2,551 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"tags": []
},
"source": [
"## Получения прогнозов по аудио\n",
"## Получение прогнозов по аудио\n",
"\n",
"<img src=\"https://raw.githubusercontent.com/aimclub/OCEANAI/main/docs/source/user_guide/notebooks/images/Pipeline_AIA_ru.svg\" width=\"100%\" />\n",
"\n",
Expand Down
2,131 changes: 958 additions & 1,173 deletions docs/source/user_guide/notebooks/Pipeline_practical_task_1.ipynb

Large diffs are not rendered by default.

1,334 changes: 596 additions & 738 deletions docs/source/user_guide/notebooks/Pipeline_practical_task_2.ipynb

Large diffs are not rendered by default.

1,148 changes: 513 additions & 635 deletions docs/source/user_guide/notebooks/Pipeline_practical_task_3.ipynb

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"tags": []
},
"source": [
"## Получения прогнозов по тексту\n",
"## Получение прогнозов по тексту\n",
"\n",
"<img src=\"https://raw.githubusercontent.com/aimclub/OCEANAI/main/docs/source/user_guide/notebooks/images/Pipeline_TIA_ru.svg\" width=\"100%\" />\n",
"\n",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"tags": []
},
"source": [
"## Получения прогнозов по видео\n",
"## Получение прогнозов по видео\n",
"\n",
"<img src=\"https://raw.githubusercontent.com/aimclub/OCEANAI/main/docs/source/user_guide/notebooks/images/Pipeline_VIA_ru.svg\" width=\"100%\" />\n",
"\n",
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions oceanai/modules/core/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -3779,6 +3779,9 @@ def _priority_skill_calculation(

self._df_files_priority_skill = pd.DataFrame(data=new_list,columns=self.keys_dataset_+skills_name)
self._df_files_priority_skill = self._df_files_priority_skill.sort_values(by=skills_name, ascending=False)
self._df_files_priority_skill.index.name = 'ID'
self._df_files_priority_skill.index += 1
self._df_files_priority_skill.index = self._df_files_priority_skill.index.map(str)

except Exception:
self._other_error(self._unknown_err, out=out)
Expand Down

0 comments on commit 54289c4

Please sign in to comment.