Spaces:
Sleeping
Sleeping
Gabriel Okiri
commited on
Commit
·
4983f5e
1
Parent(s):
562efc8
//
Browse files- __init__.py +3 -3
- app.py +4 -0
- app/interface/__init__.py +3 -3
- app/model/__init__.py +3 -0
- app/utils/__init__.py +3 -0
- scripts/__init__.py +3 -0
__init__.py
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
-
touch /
|
2 |
-
touch /
|
3 |
-
touch /
|
|
|
1 |
+
touch /Users/mac/documents/git/mlops/terngiai/app/__init__.py
|
2 |
+
touch /Users/mac/documents/git/mlops/terngiai/app/model/__init__.py
|
3 |
+
touch /Users/mac/documents/git/mlops/terngiai/app/interface/__init__.py
|
app.py
CHANGED
@@ -51,6 +51,10 @@
|
|
51 |
# iface.launch()
|
52 |
|
53 |
|
|
|
|
|
|
|
|
|
54 |
from model.config import ModelConfig
|
55 |
from model.model import NigerianLanguageModel
|
56 |
from interface.gradio_app import create_interface
|
|
|
51 |
# iface.launch()
|
52 |
|
53 |
|
54 |
+
import sys
|
55 |
+
import os
|
56 |
+
sys.path.append(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
|
57 |
+
|
58 |
from model.config import ModelConfig
|
59 |
from model.model import NigerianLanguageModel
|
60 |
from interface.gradio_app import create_interface
|
app/interface/__init__.py
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
-
touch /
|
2 |
-
touch /
|
3 |
-
touch /
|
|
|
1 |
+
touch /Users/mac/documents/git/mlops/terngiai/app/__init__.py
|
2 |
+
touch /Users/mac/documents/git/mlops/terngiai/app/model/__init__.py
|
3 |
+
touch /Users/mac/documents/git/mlops/terngiai/app/interface/__init__.py
|
app/model/__init__.py
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
touch /Users/mac/documents/git/mlops/terngiai/app/__init__.py
|
2 |
+
touch /Users/mac/documents/git/mlops/terngiai/app/model/__init__.py
|
3 |
+
touch /Users/mac/documents/git/mlops/terngiai/app/interface/__init__.py
|
app/utils/__init__.py
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
touch /Users/mac/documents/git/mlops/terngiai/app/__init__.py
|
2 |
+
touch /Users/mac/documents/git/mlops/terngiai/app/model/__init__.py
|
3 |
+
touch /Users/mac/documents/git/mlops/terngiai/app/interface/__init__.py
|
scripts/__init__.py
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
touch /Users/mac/documents/git/mlops/terngiai/app/__init__.py
|
2 |
+
touch /Users/mac/documents/git/mlops/terngiai/app/model/__init__.py
|
3 |
+
touch /Users/mac/documents/git/mlops/terngiai/app/interface/__init__.py
|