Spaces:
Build error
Build error
Gabriel
commited on
Commit
·
4270c35
1
Parent(s):
3fbae5e
debug
Browse files
app.py
CHANGED
|
@@ -38,7 +38,8 @@ def main(job_title, company_name, company_desc, job_desc,
|
|
| 38 |
t_indep = tensor(df[indep_cols].values, dtype=torch.float)
|
| 39 |
vals,indices = t_indep.max(dim=0)
|
| 40 |
t_indep = t_indep / vals
|
| 41 |
-
return calc_preds(coeffs, t_indep)
|
|
|
|
| 42 |
|
| 43 |
iface = gr.Interface(
|
| 44 |
fn=main,
|
|
|
|
| 38 |
t_indep = tensor(df[indep_cols].values, dtype=torch.float)
|
| 39 |
vals,indices = t_indep.max(dim=0)
|
| 40 |
t_indep = t_indep / vals
|
| 41 |
+
# return calc_preds(coeffs, t_indep)
|
| 42 |
+
return df
|
| 43 |
|
| 44 |
iface = gr.Interface(
|
| 45 |
fn=main,
|