Skip to content

Commit

Permalink
update dependencies
Browse files Browse the repository at this point in the history
Signed-off-by: Elazar Gershuni <elazarg@gmail.com>
  • Loading branch information
elazarg committed Aug 3, 2024
1 parent 6dc2514 commit 4a01fb1
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 9 deletions.
4 changes: 3 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
FROM tensorflow/tensorflow:2.11.1-gpu
FROM tensorflow/tensorflow:2.15.0-gpu

#ENV VIRTUAL_ENV=/opt/venv
#RUN python -m venv $VIRTUAL_ENV
#ENV PATH="$VIRTUAL_ENV/bin:$PATH"
RUN pip install --upgrade pip

WORKDIR /app
ENV PYTHONPATH=/app

COPY README.md README.md
COPY requirements.txt requirements.txt
RUN pip install -r requirements.txt
Expand Down
2 changes: 1 addition & 1 deletion nakdimon/hebrew.py
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ def split_by_length(characters: Iterable, maxlen: int):

@dataclass(frozen=True)
class Token:
items: tuple[HebrewItem]
items: tuple[HebrewItem, ...]

def __str__(self):
return ''.join(str(c) for c in self.items)
Expand Down
1 change: 0 additions & 1 deletion nakdimon/partial_modern.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import numpy as np
import pandas as pd
import matplotlib.pyplot as plt
import seaborn as sns

Expand Down
12 changes: 6 additions & 6 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
numpy==1.24.1
requests==2.32.0
numpy==1.26.2
requests==2.31.0
requests-oauthlib==1.3.1
Flask==2.3.2
keras==2.11.0
tensorflowjs==4.2.0
tensorflow==2.11.1
Flask==2.2.5
keras==2.15.0
tensorflowjs==4.20.0
tensorflow==2.15.0
wandb==0.17.0
prettytable==3.6.0

0 comments on commit 4a01fb1

Please sign in to comment.