St0nedB commited on
Commit
a81c383
1 Parent(s): cbe37da

updated texts

Browse files
Files changed (2) hide show
  1. app.py +3 -30
  2. texts.toml +3 -3
app.py CHANGED
@@ -113,14 +113,7 @@ def make_user_plot(file_obj, idx: int):
113
  def demo():
114
  with gr.Blocks() as demo:
115
  gr.Markdown(
116
- """
117
- # deepest
118
- **deepest** (short for **deep** learning parameter **est**imator) is a CNN trained to perform signal parameter estimation.
119
- The corresponding paper can be found on [arxiv](https://arxiv.org/abs/2211.04846).
120
-
121
- This applet lets you explore the `deepest` with data from the validationset.
122
- You can also upload your own data and see how it works for your signals.
123
- """
124
  )
125
 
126
  with gr.Column():
@@ -139,22 +132,7 @@ def demo():
139
 
140
  with gr.Column():
141
  gr.Markdown(
142
- """
143
- ## Try with your own data.
144
- Good news everyone! If you want to try `deepest` with your own data, here is your chance.
145
- Afterall there is no need to believe a paper making vague claims about an algorithms performance.
146
- But keep in mind that slight deviations from the training-data distribution might throw off `deepest`.
147
- Its a Neural Network after all.
148
- You can upload a `numpy` file (both `*.npy` and `*.npz` work) with your test data.
149
- Ensure the data meets the requirements, such that you get good results.
150
-
151
- ### Requirements
152
- - complex-valued baseband data for the time-variant Channel transfer function $H(f,t)$ (e.g. from a channel-sounding campaign)
153
- - array shape must be `batch_size x f_bins x t_bins`
154
- - ideally `f_bins`=64 and `t_bins`=64, otherwise the data will be downsampled by the 2D-DFT, which might not be ideal in all scenarios.
155
-
156
- **Important** This demo runs on Huggingface. You are responsible for the data you upload. Do not upload any data that is confidential or unsuitable in this context.
157
- """
158
  )
159
 
160
  with gr.Row():
@@ -171,12 +149,7 @@ def demo():
171
  user_slider.change(make_user_plot, [user_file, user_slider], [user_plot])
172
 
173
  gr.Markdown(
174
- """
175
- ## Acknowledgements
176
- The authors acknowledge the financial support by the Federal Ministry of Education and Research of Germany in the project “Open6GHub” (grant number: 16KISK015).
177
-
178
- The authors give special thanks to Henning Schwanbeck (HPC team leader) of the TU Ilmenau Computer Center for his valuable support.
179
- """
180
  )
181
 
182
  gr.Markdown(
 
113
  def demo():
114
  with gr.Blocks() as demo:
115
  gr.Markdown(
116
+ TEXTS.introduction
 
 
 
 
 
 
 
117
  )
118
 
119
  with gr.Column():
 
132
 
133
  with gr.Column():
134
  gr.Markdown(
135
+ TEXTS.try_your_own
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
136
  )
137
 
138
  with gr.Row():
 
149
  user_slider.change(make_user_plot, [user_file, user_slider], [user_plot])
150
 
151
  gr.Markdown(
152
+ TEXTS.acknowledgements
 
 
 
 
 
153
  )
154
 
155
  gr.Markdown(
texts.toml CHANGED
@@ -34,8 +34,8 @@ acknowledgements = """
34
  contact = """
35
  ## Contact
36
  If you have technical or scientific questions or encounter any issues in the use of this applet, please let me know.
37
- You can either
38
- - write a me an email to [steffen.schieler@tu-ilmenau.de](mailto:steffen.schieler@tu-ilmenau.de)
39
- - or start a new discussion in the [Community Tab](https://huggingface.co/spaces/EMS-TU-Ilmenau/deepest-demo/discussions)
40
 
41
  """
 
34
  contact = """
35
  ## Contact
36
  If you have technical or scientific questions or encounter any issues in the use of this applet, please let me know.
37
+ You can either
38
+ - write a me an email to [steffen.schieler@tu-ilmenau.de](mailto:steffen.schieler@tu-ilmenau.de)
39
+ - or start a new discussion in the [Community Tab](https://huggingface.co/spaces/EMS-TU-Ilmenau/deepest-demo/discussions)
40
 
41
  """