Upload 6 files
Browse files- .gitattributes +1 -0
- cv.joblib +3 -0
- dataset.csv +3 -0
- full_language_identifcation_modelf.h5 +3 -0
- index.html +13 -0
- le.joblib +3 -0
- result.html +12 -0
.gitattributes
CHANGED
@@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
36 |
+
dataset.csv filter=lfs diff=lfs merge=lfs -text
|
cv.joblib
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:be9e861c206e46e7525d0ab04bec17699e592d0e0afb439b8b138d8754d165c8
|
3 |
+
size 5215915
|
dataset.csv
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:e4ae6764130f9c01c6697ec960868b195123e0f73327d8e58130f8ea5735bb54
|
3 |
+
size 12989063
|
full_language_identifcation_modelf.h5
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:4a3b3bdbe20babc45d59cd47fbebde0308df17b651d97f2a1515fac49662d6c5
|
3 |
+
size 311554472
|
index.html
ADDED
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE html>
|
2 |
+
<html>
|
3 |
+
<head>
|
4 |
+
<title>Language Prediction</title>
|
5 |
+
</head>
|
6 |
+
<body>
|
7 |
+
<h1>Language Prediction</h1>
|
8 |
+
<form method="post">
|
9 |
+
<textarea name="text" rows="4" cols="50"></textarea><br><br>
|
10 |
+
<input type="submit" value="Predict">
|
11 |
+
</form>
|
12 |
+
</body>
|
13 |
+
</html>
|
le.joblib
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:00e6e19981f464c235089a1676799803154ac255720131bdd7e562a0f4d19155
|
3 |
+
size 816
|
result.html
ADDED
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE html>
|
2 |
+
<html>
|
3 |
+
<head>
|
4 |
+
<title>Result</title>
|
5 |
+
</head>
|
6 |
+
<body>
|
7 |
+
<h1>Result</h1>
|
8 |
+
<p>Input Text: {{ text }}</p>
|
9 |
+
<p>Predicted Language: {{ prediction }}</p>
|
10 |
+
<a href="/">Go Back</a>
|
11 |
+
</body>
|
12 |
+
</html>
|