Chan Lee commited on
Commit
0c65a08
1 Parent(s): c37d32d

comment out peach theme

Browse files
Files changed (1) hide show
  1. app.py +10 -10
app.py CHANGED
@@ -117,8 +117,8 @@ vs_phs_io = Interface(fn=vs_PHSBERT, inputs="text", outputs="text")
117
  vs = Parallel(vs_bert_io, vs_phs_io,
118
  examples=vs_examples,
119
  title=vs_title,
120
- description=vs_desc,
121
- theme="peach")
122
 
123
  folder = "hm/"
124
  hm_predictor_bert = ktrain.load_predictor(folder + "bert")
@@ -156,8 +156,8 @@ hm_phs_io = Interface(fn=hm_PHSBERT, inputs="text", outputs="text")
156
  hm = Parallel(hm_bert_io, hm_phs_io,
157
  examples=hm_examples,
158
  title=hm_title,
159
- description=hm_desc,
160
- theme="peach")
161
 
162
  folder = "cv/"
163
  covid_predictor_bert = ktrain.load_predictor(folder + "bert")
@@ -191,8 +191,8 @@ covid_phs_io = Interface(fn=covid_PHSBERT, inputs="text", outputs="text")
191
  covid = Parallel(covid_bert_io, covid_phs_io,
192
  examples=covid_examples,
193
  title=covid_title,
194
- description=covid_desc,
195
- theme="peach")
196
 
197
  folder = "st/"
198
  stress_predictor_bert = ktrain.load_predictor(folder + "bert")
@@ -226,8 +226,8 @@ stress_phs_io = Interface(fn=stress_PHSBERT, inputs="text", outputs="text")
226
  stress = Parallel(stress_bert_io, stress_phs_io,
227
  examples=stress_examples,
228
  title=stress_title,
229
- description=stress_desc,
230
- theme="peach")
231
 
232
  folder = "ot/"
233
  other_predictor_bert = ktrain.load_predictor(folder + "bert")
@@ -261,8 +261,8 @@ other_phs_io = Interface(fn=other_PHSBERT, inputs="text", outputs="text")
261
  other = Parallel(other_bert_io, other_phs_io,
262
  examples=other_examples,
263
  title=other_title,
264
- description=other_desc,
265
- theme="peach")
266
  # vs_bert_io, vs_mental_io, vs_phs_io = make_interfaces("vs/")
267
  # vs = Parallel(vs_bert_io, vs_mental_io, vs_phs_io,
268
  # examples=vs_examples,
 
117
  vs = Parallel(vs_bert_io, vs_phs_io,
118
  examples=vs_examples,
119
  title=vs_title,
120
+ description=vs_desc)
121
+ # theme="peach") # Run error?
122
 
123
  folder = "hm/"
124
  hm_predictor_bert = ktrain.load_predictor(folder + "bert")
 
156
  hm = Parallel(hm_bert_io, hm_phs_io,
157
  examples=hm_examples,
158
  title=hm_title,
159
+ description=hm_desc)
160
+ # theme="peach")
161
 
162
  folder = "cv/"
163
  covid_predictor_bert = ktrain.load_predictor(folder + "bert")
 
191
  covid = Parallel(covid_bert_io, covid_phs_io,
192
  examples=covid_examples,
193
  title=covid_title,
194
+ description=covid_desc)
195
+ # theme="peach")
196
 
197
  folder = "st/"
198
  stress_predictor_bert = ktrain.load_predictor(folder + "bert")
 
226
  stress = Parallel(stress_bert_io, stress_phs_io,
227
  examples=stress_examples,
228
  title=stress_title,
229
+ description=stress_desc)
230
+ # theme="peach")
231
 
232
  folder = "ot/"
233
  other_predictor_bert = ktrain.load_predictor(folder + "bert")
 
261
  other = Parallel(other_bert_io, other_phs_io,
262
  examples=other_examples,
263
  title=other_title,
264
+ description=other_desc)
265
+ # theme="peach")
266
  # vs_bert_io, vs_mental_io, vs_phs_io = make_interfaces("vs/")
267
  # vs = Parallel(vs_bert_io, vs_mental_io, vs_phs_io,
268
  # examples=vs_examples,