Skip to content
Open
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
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
.libx_venv
__pycache__/
*.pyc
*.pyo
6 changes: 3 additions & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
fastapi==0.104.1
fastapi==0.109.1
uvicorn==0.24.0
pydantic==2.5.0
python-multipart==0.0.6
python-multipart==0.0.7
numpy==1.24.3
tensorflow==2.14.0
keras==2.14.0
nltk==3.8.1
nltk==3.9
2 changes: 1 addition & 1 deletion train.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# libraries
import random
from tensorflow.keras.optimizers import SGD
from keras.optimizers import SGD
from keras.layers import Dense, Dropout
from keras.models import load_model
from keras.models import Sequential
Expand Down