Spaces:
Sleeping
Sleeping
Updated gitignore and removed cached files
Browse files- .gitignore +22 -19
- services/__pycache__/game_service.cpython-311.pyc +0 -0
- services/__pycache__/model_downloader.cpython-311.pyc +0 -0
- services/__pycache__/visualization_service.cpython-311.pyc +0 -0
- services/__pycache__/word_service.cpython-311.pyc +0 -0
- services/__pycache__/word_service.cpython-313.pyc +0 -0
- services/game_service.py +1 -0
- services/word_service.py +1 -0
.gitignore
CHANGED
|
@@ -1,8 +1,3 @@
|
|
| 1 |
-
# Dependencies
|
| 2 |
-
node_modules/
|
| 3 |
-
/.pnp
|
| 4 |
-
.pnp.js
|
| 5 |
-
|
| 6 |
# Python
|
| 7 |
__pycache__/
|
| 8 |
*.py[cod]
|
|
@@ -27,20 +22,18 @@ var/
|
|
| 27 |
*.egg
|
| 28 |
|
| 29 |
# Testing
|
| 30 |
-
|
| 31 |
.pytest_cache/
|
| 32 |
-
|
| 33 |
-
|
| 34 |
-
/build
|
| 35 |
|
| 36 |
# Environment variables
|
| 37 |
.env
|
| 38 |
-
.env.
|
| 39 |
-
.env.
|
| 40 |
-
.env.test.local
|
| 41 |
-
.env.production.local
|
| 42 |
|
| 43 |
# Logs
|
|
|
|
| 44 |
*.log
|
| 45 |
npm-debug.log*
|
| 46 |
yarn-debug.log*
|
|
@@ -51,15 +44,25 @@ yarn-error.log*
|
|
| 51 |
.vscode/
|
| 52 |
*.swp
|
| 53 |
*.swo
|
|
|
|
|
|
|
| 54 |
|
| 55 |
-
# Model files
|
| 56 |
-
|
| 57 |
-
|
| 58 |
-
|
| 59 |
*.vec
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 60 |
|
| 61 |
-
#
|
| 62 |
-
|
|
|
|
| 63 |
|
| 64 |
# Vercel
|
| 65 |
.vercel
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
# Python
|
| 2 |
__pycache__/
|
| 3 |
*.py[cod]
|
|
|
|
| 22 |
*.egg
|
| 23 |
|
| 24 |
# Testing
|
| 25 |
+
coverage/
|
| 26 |
.pytest_cache/
|
| 27 |
+
.coverage
|
| 28 |
+
htmlcov/
|
|
|
|
| 29 |
|
| 30 |
# Environment variables
|
| 31 |
.env
|
| 32 |
+
.env.*
|
| 33 |
+
!.env.example
|
|
|
|
|
|
|
| 34 |
|
| 35 |
# Logs
|
| 36 |
+
logs/
|
| 37 |
*.log
|
| 38 |
npm-debug.log*
|
| 39 |
yarn-debug.log*
|
|
|
|
| 44 |
.vscode/
|
| 45 |
*.swp
|
| 46 |
*.swo
|
| 47 |
+
*.sublime-workspace
|
| 48 |
+
*.sublime-project
|
| 49 |
|
| 50 |
+
# Model files and data
|
| 51 |
+
data/*.vec
|
| 52 |
+
data/*.bin
|
| 53 |
+
data/*.model
|
| 54 |
*.vec
|
| 55 |
+
*.bin
|
| 56 |
+
fasttext_cache/
|
| 57 |
+
/tmp/
|
| 58 |
+
|
| 59 |
+
# Documentation (if you want to exclude generated docs)
|
| 60 |
+
docs/_build/
|
| 61 |
+
api_docs.md
|
| 62 |
|
| 63 |
+
# OS specific
|
| 64 |
+
.DS_Store
|
| 65 |
+
Thumbs.db
|
| 66 |
|
| 67 |
# Vercel
|
| 68 |
.vercel
|
services/__pycache__/game_service.cpython-311.pyc
DELETED
|
Binary file (13.6 kB)
|
|
|
services/__pycache__/model_downloader.cpython-311.pyc
DELETED
|
Binary file (2.17 kB)
|
|
|
services/__pycache__/visualization_service.cpython-311.pyc
DELETED
|
Binary file (6.57 kB)
|
|
|
services/__pycache__/word_service.cpython-311.pyc
DELETED
|
Binary file (13.8 kB)
|
|
|
services/__pycache__/word_service.cpython-313.pyc
DELETED
|
Binary file (1.82 kB)
|
|
|
services/game_service.py
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
|
|
| 1 |
import json
|
| 2 |
from pathlib import Path
|
| 3 |
from loguru import logger
|
|
|
|
| 1 |
+
# semantix-api/services/game_service.py
|
| 2 |
import json
|
| 3 |
from pathlib import Path
|
| 4 |
from loguru import logger
|
services/word_service.py
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
|
|
| 1 |
from loguru import logger
|
| 2 |
import numpy as np
|
| 3 |
from typing import List, Dict
|
|
|
|
| 1 |
+
# semantix-api/services/word_service.py
|
| 2 |
from loguru import logger
|
| 3 |
import numpy as np
|
| 4 |
from typing import List, Dict
|