Skip to content

Commit

Permalink
Removing prints from example
Browse files Browse the repository at this point in the history
  • Loading branch information
renan-souza committed Dec 18, 2024
1 parent 6a176fb commit 3e74494
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/run_examples.sh
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ run_test() {
echo "Ok, ran $test_path."
# Check for errors in the output
if grep -iq "error" output.log; then
echo "Test failed! See output.log for details."
echo "Test $test_path failed! See output.log for details."
exit 1
fi

Expand Down
5 changes: 2 additions & 3 deletions examples/single_layer_perceptron_example.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,11 +105,10 @@ def main(n_samples, split_ratio, n_input_neurons, epochs, seed):
elif wf["name"] == "SingleLayerPerceptron":
module_forward_wf = wf

print(train_wf)
# print(train_wf)
train_wf_task = Flowcept.db.query({"workflow_id": train_wf["workflow_id"]})
print(train_wf_task)
print("\n")
print(module_forward_wf)
# print(module_forward_wf)

module_tasks = Flowcept.db.query({"workflow_id": module_forward_wf["workflow_id"]})
module_tasks_df = pd.DataFrame(module_tasks)
Expand Down

0 comments on commit 3e74494

Please sign in to comment.