Update process_data.py
Browse files- process_data.py +6 -0
process_data.py
CHANGED
|
@@ -131,6 +131,12 @@ def generate_json_pieces(input_data, parameters):
|
|
| 131 |
(str - json) A final combined JSON containing the data filled schema for Farm Activites
|
| 132 |
"""
|
| 133 |
print("Generating JSON Pieces!")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 134 |
specification = input_data["input_text"]
|
| 135 |
model_version = parameters["model_version"]
|
| 136 |
|
|
|
|
| 131 |
(str - json) A final combined JSON containing the data filled schema for Farm Activites
|
| 132 |
"""
|
| 133 |
print("Generating JSON Pieces!")
|
| 134 |
+
|
| 135 |
+
print("INPUT DATA")
|
| 136 |
+
print(input_data)
|
| 137 |
+
print("PARAMS")
|
| 138 |
+
print(parameters)
|
| 139 |
+
|
| 140 |
specification = input_data["input_text"]
|
| 141 |
model_version = parameters["model_version"]
|
| 142 |
|