The full problem: Generate a NumPy array of 10,000 random numbers (called x) and create a Variable storing the equation y=5x^2−3x+15
import numpy as np
data = np.random.randint(1000, size=10000)
x = tf.constant(data, name='x')
y = tf.Variable(5 * (x**2) - (3 * x) + 15)
model = tf.global_variables_initializer()
with tf.Session() as session:
session.run(model)
print(session.run(y))
The output is [4528679 4547733 119675 ... 2215797 1247 1703543]. What is the reason for not including the full 10,000 random numbers within the array? And what does the '...' signify?