به بخش پرسش و پاسخ یادگیری عمیق خوش آمدید,
این نسخه آزمایشی سایت است.
لطفا به نکات زیر توجه کنید:
  • برای ارتباط با مدیران میتوانید از صفحه مدیران اقدام کنید.
  • سوال و جواب ها باید به زبان فارسی باشند. استفاده از زبان انگلیسی یا فینگلیش برای پاسخ دادن مجاز نیست.
  • لطفا بعد از پرسش سوال لینک سوال خود را در گرو تلگرام (Iran Deep Learning Group) معرفی کنید تا سریعتر به جواب برسید. برای دسترسی به آخرین لینک از منابع یادگیری استفاده کنید
  • لطفا بجای عکس از متن استفاده کنید. اگر متون طولانی هستند از سایت pastebin.com برای اپلود استفاده کرده و لینک حاصل را در سوال خود قرار دهید. برای قرار دادن تصویر ، از بخش ارسال تصویر ادیتور سایت استفاده کنید.
  • بعد از دریافت پاسخ، بهترین پاسخ را از طریق کلیک بر روی علامت تیک انتخاب کنید
  • اگر با خطا و یا مشکلی مواجه شدید از بخش تماس با ما در انتهای صفحه و یا ایمیل Coderx7@gmail.com موضوع را اطلاع دهید.

با تشکر

دسته بندی ها

0 امتیاز

با سلام. من تنسورفلو را نصب کرده ام و حالا برای اجرای یکی از برنامه هایم در پایچرم با خطای زیر روبرو می شوم:

AttributeError: module 'tensorflow' has no attribute 'Constant'

ممکنه راهنمایی بفرمایید؟ ممنونم

توسط (106 امتیاز)

1 پاسخ

+1 امتیاز
 
بهترین پاسخ

سلام
constant ‌رو بصورت lower case (با حروف کوچک ) تایپ کنید.

tf.constant

:tf.constant

tf.constant(
    value,
    dtype=None,
    shape=None,
    name='Const',
    verify_shape=False
)

Defined in tensorflow/python/framework/constant_op.py.

See the guide: Constants, Sequences, and Random Values > Constant
Value Tensors

Creates a constant tensor.

The resulting tensor is populated with values of type dtype, as
specified by arguments value and (optionally) shape (see examples
below).

The argument value can be a constant value, or a list of values of
type dtype. If value is a list, then the length of the list must be
less than or equal to the number of elements implied by the shape
argument (if specified). In the case where the list length is less
than the number of elements specified by shape, the last element in
the list will be used to fill the remaining entries.

The argument shape is optional. If present, it specifies the
dimensions of the resulting tensor. If not present, the shape of value
is used.

If the argument dtype is not specified, then the type is inferred from
the type of value.

For example:

# Constant 1-D Tensor populated with value list. 
tensor = tf.constant([1, 2, 3, 4, 5, 6, 7]) => [1 2 3 4 5 6 7]

# Constant 2-D tensor populated with scalar value -1.
 tensor = tf.constant(-1.0, shape=[2, 3]) => [[-1. -1. -1.]
                                             [-1. -1. -1.]] 

Args:
value: A constant value (or list) of output type dtype.

dtype: The type of the elements of the resulting tensor.

shape: Optional dimensions of resulting tensor.

name: Optional name for the tensor.

verify_shape: Boolean that enables verification of a shape of values.

Returns:
A Constant Tensor.

توسط (4.3k امتیاز)
انتخاب شده توسط
...