The primary problem is that while the answers which ChatGPT produces have a high rate of being incorrect, they typically look like they might be good and the answers are very easy to produce. There are also many people trying out ChatGPT to create answers, without the expertise or willingness to verify that the answer is correct prior to posting. Because such answers are so easy to produce, a large number of people are posting a lot of answers. The volume of these answers (thousands) and the fact that the answers often require a detailed read by someone with at least some subject matter expertise in order to determine that the answer is actually bad has effectively swamped our volunteer-based quality curation infrastructure.
...
sanctions will be imposed to prevent users from continuing to post such content, even if the posts would otherwise be acceptable.
I have some sympathy for that position, but I don't know how effective it will be. The answers it comes up with are deceptively confident. There was one the other day, @Macropod , on Reddit that you might find interesting - someone asked how to use VBA to convert a page in a Word document into a PNG or JPG file. Someone posted the response from ChatGPT (as below):Let's just say ChatGPT's use has been banned at StackOverflow for its propensity for the production of seemingly plausible (even correct) answers that are factually wrong. See: Temporary policy: ChatGPT is banned
Sub SavePagesAsJPEG() ' Declare variables
Dim PageCount As Integer
Dim i As Integer
Dim FileName As String ' Get the number of pages in the document
PageCount = ActiveDocument.ComputeStatistics(wdStatisticPages) ' Loop through each page
For i = 1 To PageCount ' Set the file name for the current page
FileName = "Page" & i & ".jpg" ' Save the current page as a JPEG file
ActiveDocument.ExportAsFixedFormat OutputFileName:=FileName, ExportFormat:=wdExportFormatJPEG, OpenAfterExport:=False, OptimizeFor:=wdExportOptimizeForPrint, Range:=wdExportFromTo, From:=i, To:=i
Next i
End Sub `