Skip to content

Commit

Permalink
Summary
Browse files Browse the repository at this point in the history
  • Loading branch information
DmitryRyumin committed Dec 12, 2023
1 parent b98efff commit b813333
Show file tree
Hide file tree
Showing 7 changed files with 242 additions and 244 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -190,4 +190,6 @@ docs/source/user_guide/notebooks/video_MuPTA_2/test/*.wav
docs/source/user_guide/notebooks/video_FI/test/*.wav
docs/source/user_guide/notebooks/video_FI_2/test/*.wav
docs/source/user_guide/notebooks/video_FI/test/*.mp4
docs/source/user_guide/notebooks/video_FI_2/test/*.mp4
docs/source/user_guide/notebooks/video_FI_2/test/*.mp4
models/
logs/
10 changes: 5 additions & 5 deletions docs/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ nbsphinx==0.8.10
sphinx-copybutton==0.5.1
ipython>=8.7.0
jupyterlab>=3.5.0
tensorflow>=2.11.0
tensorflow>=2.15.0
keras>=2.11.0
Keras-Applications>=1.0.8
numpy>=1.23.5
Expand All @@ -23,8 +23,8 @@ pymediainfo>=6.0.1
mediapipe>=0.9.0
pytest>=7.2.0
liwc>=0.5.0
transformers >= 4.24.0
transformers >= 4.36.0
sentencepiece >= 0.1.99
torch == 1.12.1
torchaudio == 0.12.1
oceanai>=1.0.0a13
torch == 2.0.1
torchaudio == 2.0.1
oceanai>=1.0.0a14
2 changes: 1 addition & 1 deletion oceanai/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
__uri__ = "https://github.com/DmitryRyumin/oceanai"

__version__ = "1.0"
__release__ = __version__ + ".0a13"
__release__ = __version__ + ".0a14"

__author__ru__ = "Рюмина Елена, Рюмин Дмитрий, Карпов Алексей"
__author__en__ = "Elena Ryumina, Dmitry Ryumin, Alexey Karpov"
Expand Down
4 changes: 2 additions & 2 deletions oceanai/modules/core/language.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
# i18n/pygettext.py -d oceanai -o oceanai/modules/locales/base.pot oceanai
# 4. msgfmt --help
# 5. locate msgfmt.py
# 6. /usr/local/Cellar/python@3.9/3.9.7/Frameworks/Python.framework/Versions/3.9/share/doc/python3.9/examples/Tools/
# i18n/msgfmt.py oceanai/modules/locales/en/LC_MESSAGES/base.po oceanai/modules/locales/en/LC_MESSAGES/base
# 6. /Library/Frameworks/Python.framework/Versions/3.9/share/doc/python3.9/examples/Tools/i18n/msgfmt.py
# oceanai/modules/locales/en/LC_MESSAGES/base.po oceanai/modules/locales/en/LC_MESSAGES/base

import warnings

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
REQUIRED_PACKAGES = [
"ipython >= 8.7.0",
"jupyterlab >= 3.5.0",
"tensorflow >= 2.11.0",
"tensorflow >= 2.15.0",
"keras >= 2.11.0",
"Keras-Applications>=1.0.8",
"numpy >= 1.23.5",
Expand All @@ -27,7 +27,7 @@
"pymediainfo >= 6.0.1",
"mediapipe >= 0.9.0",
"liwc >= 0.5.0",
"transformers >= 4.24.0",
"transformers >= 4.36.0",
"sentencepiece >= 0.1.99",
"torch == 1.12.1",
"torchaudio == 0.12.1",
Expand Down
Loading

0 comments on commit b813333

Please sign in to comment.