Will ChatGPT/GPT-4 Be Able To Render a Single Line Drawing of a Cat by end of June 2024?
21%
chance

Using the following prompt:

Use matplotlib to render a single line drawing of a cat

I recieved the code:

import matplotlib.pyplot as plt

# Define the cat's shape using x and y coordinates
x = [3, 3, 5, 7, 9, 11, 11, 10, 11, 12, 13, 15, 17, 19, 19, 17, 15, 13, 12, 11, 10, 11, 9, 7, 5]
y = [4, 8, 10, 12, 10, 8, 4, 6, 4, 6, 4, 6, 8, 6, 4, 6, 8, 10, 12, 10, 12, 14, 12, 10, 8]

fig, ax = plt.subplots()

# Plot the cat's shape as a single line
ax.plot(x, y, lw=2, color='black', marker='o', markersize=4, markerfacecolor='red')

# Set plot properties
ax.set_aspect('equal')
ax.set_axis_off()

# Display the plot
plt.show()

Which renders as:

Ahhhh! No.

Using the same conditions as above, will ChatGPT be able to render a drawing of a cat by the end of June 2024? Resolves YES if so, otherwise NO.

Other relevant markets:

Get Ṁ600 play money
Sort by:

Well, it's better than yours....still gonna have to say this probably won't happen. (also had to fix a bug in the code because it thought circles have an argument called "aspect," they don't in the version I was on)

How does this resolve if a new product that replaces ChatGPT but is not called ChatGPT is released?

Presumably, based on whether the model of it is gpt-4. Since it says gpt-4 in the title. Even if that happens, doubtful that GPT-4 will be inaccessible.