edit text
Browse files
app.py
CHANGED
|
@@ -212,7 +212,7 @@ def predict(dim1, dim2):
|
|
| 212 |
table = generate_table(dim1, dim2)
|
| 213 |
out += table
|
| 214 |
out += "\n# Step2 (susbtitute columns that have 1 with concat)\n"
|
| 215 |
-
out += ""
|
| 216 |
dim1, dim2 = substitute_ones_with_concat(dim1, dim2, 2)
|
| 217 |
checks = ["V"] * (len(dim1) - 1)
|
| 218 |
if dim1[-1] == dim2[-1]:
|
|
|
|
| 212 |
table = generate_table(dim1, dim2)
|
| 213 |
out += table
|
| 214 |
out += "\n# Step2 (susbtitute columns that have 1 with concat)\n"
|
| 215 |
+
out += "fill all previous columns with ones\n"
|
| 216 |
dim1, dim2 = substitute_ones_with_concat(dim1, dim2, 2)
|
| 217 |
checks = ["V"] * (len(dim1) - 1)
|
| 218 |
if dim1[-1] == dim2[-1]:
|