Report output

Machine learning models are powerful, but they're also unmoderated. Sometimes the output of the models can be inappropriate or incorrect. It might be broken or buggy. It might cause copyright issues. It might be inappropriate content.

Whatever the reason, please use this form to report to us when something is wrong with the output of a model you've run.

We'll investigate the reported output and take appropriate action. We may flag this output to the model author if we think they should be aware.

Your report

Output

Sure! Here is a sample SQL query that should give you the total revenue by state of customer based on the tables you provided: SELECT state, SUM(orders.units_purchased * products.unit_price) AS revenue FROM customers JOIN orders ON customers.cust_id = orders.cust_id JOIN products ON orders.prod_id = products.prod_id GROUP BY state This query joins the customers, orders, and products tables on the common column of cust_id, and then groups the results by state to give you the total revenue by state.

Give us a few details about how this output is unsafe or broken.