Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
Commit
·
310211f
1
Parent(s):
b9f2c18
Update markdown language
Browse files
app.py
CHANGED
@@ -160,7 +160,15 @@ def process_youtube(youtube_address):
|
|
160 |
|
161 |
with gr.Blocks(title="Audio Fake Detector") as demo:
|
162 |
with gr.Tab("Individual Processing"):
|
163 |
-
gr.Markdown("# Welcome to Loccus
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
164 |
|
165 |
|
166 |
|
@@ -185,7 +193,7 @@ with gr.Blocks(title="Audio Fake Detector") as demo:
|
|
185 |
#v.upload(process_video, inputs=[v], outputs=[text])
|
186 |
|
187 |
with gr.Tab("Batch Processing"):
|
188 |
-
gr.Markdown("# Welcome to Loccus
|
189 |
|
190 |
with gr.Row():
|
191 |
with gr.Column():
|
|
|
160 |
|
161 |
with gr.Blocks(title="Audio Fake Detector") as demo:
|
162 |
with gr.Tab("Individual Processing"):
|
163 |
+
gr.Markdown("""# Welcome to Loccus' Authenticity Verification demo!
|
164 |
+
This is a showcase of our solution. It provides a probability of a voice being real or AI-generated. It is designed for the following context:
|
165 |
+
* To detect voice clones
|
166 |
+
* Focus on English and Spanish languages
|
167 |
+
* For short audio samples (3 to 10 seconds)
|
168 |
+
* For audio from digital channels (at 16 kHz or more)
|
169 |
+
|
170 |
+
Please test it accordingly. Variations of the above (e.g. a 1 minute audio file of an off-the-shelf TTS voice in Japanese) can compromise the accuracy and performance of the solution. We keep improving the solution adding new features every week.""")
|
171 |
+
|
172 |
|
173 |
|
174 |
|
|
|
193 |
#v.upload(process_video, inputs=[v], outputs=[text])
|
194 |
|
195 |
with gr.Tab("Batch Processing"):
|
196 |
+
gr.Markdown("# Welcome to Loccus' Authenticity Verification demo!")
|
197 |
|
198 |
with gr.Row():
|
199 |
with gr.Column():
|
notes.txt
DELETED
@@ -1,9 +0,0 @@
|
|
1 |
-
https://discuss.huggingface.co/t/embedding-spaces-with-auth-for-public-models-counter-intuitive/32868/2
|
2 |
-
|
3 |
-
Hello @EtheE, thank you for your feedback. We have received similar requests in the past, we might implement a solution it in the future. However, we have previously suggested different workarounds depending on the specific use case:
|
4 |
-
|
5 |
-
To hide sensitive source code on Space, you can create a private Space and a second public Space which only loads the private Space using the ‘gr.Interface.load()’ method. This method can load a Space even if it is private. Check more her Gradio Docs 74.
|
6 |
-
|
7 |
-
To hide specific files only, you can create a private dataset/model and use the ‘huggingface_hub’ client to load your dataset/model using the hub token via Space settings.
|
8 |
-
|
9 |
-
You can also use our Inference Endpoints PaaS service which is fully integrated with HF tools and our hub. This service provides a way to deploy a Space as a REST API. You can learn more about it here Inference Endpoints - Hugging Face 47
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|