|
|
|
|
|
by UncleOxidant
1040 days ago
|
|
Hmmm... so on that hugging face page there's a text box where you enter input then you click the 'compute' button. So I asked it to "Write a python function that computes the square of the input number." And it responds with: def square(x):
Which seems quite underwhelming. |
|
``` def square(x): return x*x ```