Spaces:
Build error
Build error
Thomas Chaigneau
commited on
Commit
·
a2a09d6
1
Parent(s):
1d46d77
add docstrings
Browse files- available_models.py +5 -1
- main.py +10 -1
available_models.py
CHANGED
|
@@ -1,6 +1,10 @@
|
|
| 1 |
-
"""
|
|
|
|
| 2 |
|
| 3 |
MODELS list all available models.
|
|
|
|
|
|
|
|
|
|
| 4 |
"""
|
| 5 |
|
| 6 |
MODELS = {
|
|
|
|
| 1 |
+
"""
|
| 2 |
+
🗣️ Translator - Translate text from one language to another.
|
| 3 |
|
| 4 |
MODELS list all available models.
|
| 5 |
+
|
| 6 |
+
Author:
|
| 7 |
+
- @ChainYo
|
| 8 |
"""
|
| 9 |
|
| 10 |
MODELS = {
|
main.py
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
import re
|
| 2 |
import streamlit as st
|
| 3 |
|
|
@@ -38,7 +47,7 @@ with st.expander(label="❓ How does it work", expanded=True):
|
|
| 38 |
*P.S. I have built this tool to help me start writing blog posts in different languages. I am a French native speaker
|
| 39 |
and I will use it to translate my potential future blog posts in English.*
|
| 40 |
|
| 41 |
-
*P.P.S. I am
|
| 42 |
clicking on the socials badges above.*
|
| 43 |
""")
|
| 44 |
|
|
|
|
| 1 |
+
"""
|
| 2 |
+
🗣️ Translator - Translate text from one language to another.
|
| 3 |
+
|
| 4 |
+
Application file made with Streamlit.
|
| 5 |
+
|
| 6 |
+
Author:
|
| 7 |
+
- @ChainYo
|
| 8 |
+
"""
|
| 9 |
+
|
| 10 |
import re
|
| 11 |
import streamlit as st
|
| 12 |
|
|
|
|
| 47 |
*P.S. I have built this tool to help me start writing blog posts in different languages. I am a French native speaker
|
| 48 |
and I will use it to translate my potential future blog posts in English.*
|
| 49 |
|
| 50 |
+
*P.P.S. I am a **Junior ML Engineer** passionate about **machine learning** and **data science**. Reach out to me by
|
| 51 |
clicking on the socials badges above.*
|
| 52 |
""")
|
| 53 |
|