Google I/O-তে টিউন করার জন্য ধন্যবাদ। চাহিদা অনুযায়ী সব সেশন দেখুন চাহিদা অনুযায়ী দেখুন

সেন্সরফ্লো :: অপস :: কনভ 3 ডি

#include <nn_ops.h>

5-ডি input এবং filter টেনসর দেওয়া 3-ডি রূপান্তর গণনা করে।

সারসংক্ষেপ

সংকেত প্রক্রিয়াকরণে, ক্রস-পারস্পরিক সম্পর্ক হ'ল দুটি তরঙ্গকারীর মিলের একটি পরিমাপ যা তাদের মধ্যে একটির জন্য প্রয়োগ করা সময়ের ব্যবধানের ফাংশন। এটি স্লাইডিং ডট পণ্য বা স্লাইডিং অভ্যন্তরীণ পণ্য হিসাবেও পরিচিত।

আমাদের Conv3D ক্রস-সম্পর্ক সম্পর্কিত একটি ফর্ম প্রয়োগ করে।

যুক্তি:

  • সুযোগ: একটি স্কোপ অবজেক্ট
  • ইনপুট: আকার [batch, in_depth, in_height, in_width, in_channels]
  • ফিল্টার: আকার [filter_depth, filter_height, filter_width, in_channels, out_channels]in_channels অবশ্যই input এবং filter মধ্যে মেলে।
  • পদক্ষেপ: দৈর্ঘ্য 5. প্রতিটি আয়তনের জন্য সহচরী উইন্ডোর দীর্ঘ 1-ডি টেন্সর input । অবশ্যই strides[0] = strides[4] = 1 থাকতে হবে strides[0] = strides[4] = 1
  • প্যাডিং: প্যাডিং অ্যালগরিদমের ধরণটি।

Attrs বৈশিষ্ট্য ( Attrs ):

  • ডেটা ফর্ম্যাট: ইনপুট এবং আউটপুট ডেটার ডেটা ফর্ম্যাট। ডিফল্ট ফর্ম্যাট "এনডিএইচডব্লিউসি" এর সাথে, ডেটাগুলি ক্রম হিসাবে সংরক্ষণ করা হয়: [ব্যাচ, ইন_ডেপথ, ইনহাইট, ইন_উইথ, ইন_চ্যানেলস]। বিকল্পভাবে, ফর্ম্যাটটি "এনসিডিএইচডাব্লু" হতে পারে, ডাটা স্টোরেজ অর্ডারটি হ'ল: [ব্যাচ, ইন_চ্যানেলস, ইন_ডিপথ, ইনহাইট, ইন_উইথ]]
  • dilations: দৈর্ঘ্য 5. প্রতিটি আয়তনের জন্য প্রসারণ ফ্যাক্টর 1-ডি টেন্সর input । যদি কে> 1 তে সেট করা থাকে, সেই মাত্রায় প্রতিটি ফিল্টার উপাদানগুলির মধ্যে k-1 এড়িয়ে যাওয়া ঘর থাকবে। মাত্রা data_format মান দ্বারা নির্ধারিত হয়, data_format জন্য উপরে দেখুন। ব্যাচে ডায়ালেশন এবং গভীরতার মাত্রা 1 হতে হবে।

রিটার্নস:

  • Output : আউটপুট টেনসর।

নির্মাণকারী এবং ধ্বংসকারী

Conv3D (const :: tensorflow::Scope & scope, :: tensorflow::Input input, :: tensorflow::Input filter, const gtl::ArraySlice< int > & strides, StringPiece padding)
Conv3D (const :: tensorflow::Scope & scope, :: tensorflow::Input input, :: tensorflow::Input filter, const gtl::ArraySlice< int > & strides, StringPiece padding, const Conv3D::Attrs & attrs)

জনসাধারণের গুণাবলী

operation
output

পাবলিক ফাংশন

node () const
::tensorflow::Node *
operator::tensorflow::Input () const
operator::tensorflow::Output () const

পাবলিক স্ট্যাটিক ফাংশন

DataFormat (StringPiece x)
Dilations (const gtl::ArraySlice< int > & x)

স্ট্রাক্টস

টেনসরফ্লো :: অপ্স :: কনভ 3 ডি :: অ্যাটার্স

Conv3D এর জন্য .চ্ছিক অ্যাট্রিবিউট সেটটার

জনসাধারণের গুণাবলী

অপারেশন

Operation operation

আউটপুট

::tensorflow::Output output

পাবলিক ফাংশন

কনভ 3 ডি

 Conv3D(
  const ::tensorflow::Scope & scope,
  ::tensorflow::Input input,
  ::tensorflow::Input filter,
  const gtl::ArraySlice< int > & strides,
  StringPiece padding
)

কনভ 3 ডি

 Conv3D(
  const ::tensorflow::Scope & scope,
  ::tensorflow::Input input,
  ::tensorflow::Input filter,
  const gtl::ArraySlice< int > & strides,
  StringPiece padding,
  const Conv3D::Attrs & attrs
)

নোড

::tensorflow::Node * node() const 

অপারেটর :: টেনসরফ্লো :: ইনপুট

 operator::tensorflow::Input() const 

অপারেটর :: টেনসরফ্লো :: আউটপুট

 operator::tensorflow::Output() const 

পাবলিক স্ট্যাটিক ফাংশন

উপাত্ত বিন্যাস

Attrs DataFormat(
  StringPiece x
)

প্রসারণ

Attrs Dilations(
  const gtl::ArraySlice< int > & x
)