JoBeer commited on
Commit
47d4904
·
1 Parent(s): 8638674

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -1
app.py CHANGED
@@ -31,6 +31,13 @@ interface = gr.Interface(fn = predict,
31
  examples = [['Device type', 'describing a set of common specific characteristics in products or goods'], ['Item type','the type of product, an item can be assigned to'],
32
  ['Nominal power','power being consumed by or dissipated within an electric component as a variable'], ['Power consumption', 'power that is typically taken from the auxiliary power supply when the device is operating normally']],
33
  #theme = 'huggingface',
34
- title = 'ECLASS-Property-Search', description = "This is a semantic search algorithm that mapps unknown pump properties to the ECLASS standard.", article = "this is a test")
 
 
 
 
 
 
 
35
 
36
  interface.launch()
 
31
  examples = [['Device type', 'describing a set of common specific characteristics in products or goods'], ['Item type','the type of product, an item can be assigned to'],
32
  ['Nominal power','power being consumed by or dissipated within an electric component as a variable'], ['Power consumption', 'power that is typically taken from the auxiliary power supply when the device is operating normally']],
33
  #theme = 'huggingface',
34
+ title = 'ECLASS-Property-Search', description = "This is a semantic search algorithm that mapps unknown pump properties to the ECLASS standard.",
35
+ article = gr.Markdown("""\
36
+ Data scientists doing medical research often face a shortage of high quality and diverse data to \
37
+ effectively train models. This challenge can be overcome by securely allowing training on protected \
38
+ data through Federated Learning. [Substra](https://docs.substra.org/) is a Python based Federated \
39
+ Learning software that enables researchers to easily train ML models on remote data regardless of the \
40
+ ML library they are using or the data type they are working with.
41
+ """))
42
 
43
  interface.launch()