Spaces:
Sleeping
Sleeping
Update README.md
Browse files
README.md
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
---
|
2 |
-
title:
|
3 |
colorFrom: blue
|
4 |
colorTo: purple
|
5 |
sdk: gradio
|
6 |
-
license:
|
7 |
language:
|
8 |
- en
|
9 |
- es
|
@@ -17,11 +17,11 @@ emoji: π
|
|
17 |
|
18 |
## Overview
|
19 |
|
20 |
-
- **Model name:**
|
21 |
-
- **Model description:** Translates between English and
|
22 |
- **Authors:** Pallabi Biswas
|
23 |
- **Repository link:** https://huggingface.co/spaces/pallabi/Translator/tree/main
|
24 |
-
- **License:**
|
25 |
- **Contact information:** pallabi.stu2017@juniv.edu
|
26 |
|
27 |
|
@@ -29,7 +29,7 @@ emoji: π
|
|
29 |
|
30 |
|
31 |
# English2Spanish Translation
|
32 |
-
A simple and well designed web app to translate between **English** and **
|
33 |
|
34 |
|
35 |
### Requirements
|
@@ -47,21 +47,21 @@ A simple and well designed web app to translate between **English** and **Spanis
|
|
47 |
|
48 |
|
49 |
### Introduction
|
50 |
-
A simple and well designed web app to translate between **English** and **
|
51 |
|
52 |
|
53 |
### Prject Architecture
|
54 |
```
|
55 |
βββ data
|
56 |
-
β βββ
|
57 |
β
|
58 |
β
|
59 |
βββ docs
|
60 |
-
β βββ
|
61 |
β
|
62 |
β
|
63 |
βββ models
|
64 |
-
β βββ
|
65 |
β
|
66 |
β
|
67 |
βββ app.py - this module starts the app interface.
|
@@ -79,19 +79,17 @@ A simple and well designed web app to translate between **English** and **Spanis
|
|
79 |
### How To Run
|
80 |
```bash
|
81 |
# clone project
|
82 |
-
git clone https://huggingface.co/spaces/
|
83 |
# go inside the project directory
|
84 |
-
cd
|
85 |
# install the required packages
|
86 |
pip install -r requirements.txt
|
87 |
-
# train & save the model
|
88 |
-
python src/train/trainer.py
|
89 |
# run the gradio app
|
90 |
python app.py
|
91 |
```
|
92 |
|
93 |
### License
|
94 |
-
Distributed under the
|
95 |
|
96 |
|
97 |
### Contributor
|
|
|
1 |
---
|
2 |
+
title: English2French
|
3 |
colorFrom: blue
|
4 |
colorTo: purple
|
5 |
sdk: gradio
|
6 |
+
license: apache-2.0
|
7 |
language:
|
8 |
- en
|
9 |
- es
|
|
|
17 |
|
18 |
## Overview
|
19 |
|
20 |
+
- **Model name:** English2French Translation
|
21 |
+
- **Model description:** Translates between English and French.
|
22 |
- **Authors:** Pallabi Biswas
|
23 |
- **Repository link:** https://huggingface.co/spaces/pallabi/Translator/tree/main
|
24 |
+
- **License:** Apache license 2.0
|
25 |
- **Contact information:** pallabi.stu2017@juniv.edu
|
26 |
|
27 |
|
|
|
29 |
|
30 |
|
31 |
# English2Spanish Translation
|
32 |
+
A simple and well designed web app to translate between **English** and **French**.
|
33 |
|
34 |
|
35 |
### Requirements
|
|
|
47 |
|
48 |
|
49 |
### Introduction
|
50 |
+
A simple and well designed web app to translate between **English** and **French**.
|
51 |
|
52 |
|
53 |
### Prject Architecture
|
54 |
```
|
55 |
βββ data
|
56 |
+
β βββ english2French.txt - text dataset.
|
57 |
β
|
58 |
β
|
59 |
βββ docs
|
60 |
+
β βββ english2French.pdf - paper of the related research.
|
61 |
β
|
62 |
β
|
63 |
βββ models
|
64 |
+
β βββ translation_en_to_fr - generated model.
|
65 |
β
|
66 |
β
|
67 |
βββ app.py - this module starts the app interface.
|
|
|
79 |
### How To Run
|
80 |
```bash
|
81 |
# clone project
|
82 |
+
git clone https://huggingface.co/spaces/pallabi/Translator
|
83 |
# go inside the project directory
|
84 |
+
cd Translator
|
85 |
# install the required packages
|
86 |
pip install -r requirements.txt
|
|
|
|
|
87 |
# run the gradio app
|
88 |
python app.py
|
89 |
```
|
90 |
|
91 |
### License
|
92 |
+
Distributed under the Apache License 2.0. See `LICENSE` for more information.
|
93 |
|
94 |
|
95 |
### Contributor
|