#اخبار_هوش_مصنوعی
#اخبار
🚀شتابدهنده هوش مصنوعی اسمارتک
Please open Telegram to view this post
VIEW IN TELEGRAM
👍4
@MachineLearning_ir_Linear_Algebra_for_Computer_Vision,_Robotics.pdf
5.8 MB
دانشگاه پنسیلوانیا آمریکا
👨🏻💻 اگه به تازگی میخواین وارد دنیای یادگیری ماشین بشین و با اصطلاحات پیچیدهاش سر و کله بزنین، این کتاب براتون مثل یک نقشه راهه.
#آموزش
🚀شتابدهنده هوش مصنوعی اسمارتک
Please open Telegram to view this post
VIEW IN TELEGRAM
👍5
کارایی یک CNN در وظایف دسته بندی تصاویر رو میشه با استفاده از معیارهای مختلفی ارزیابی کرد.مثل:
#آموزش #یادگیری_ماشین #machine_learning
#الگوریتم_یادگیری_ماشین
Please open Telegram to view this post
VIEW IN TELEGRAM
👍6
#اخبار_هوش_مصنوعی
#اخبار
Please open Telegram to view this post
VIEW IN TELEGRAM
👍6
This media is not supported in your browser
VIEW IN TELEGRAM
#ربات #robot
Please open Telegram to view this post
VIEW IN TELEGRAM
👍1
This media is not supported in your browser
VIEW IN TELEGRAM
#هوش_مصنوعی
Please open Telegram to view this post
VIEW IN TELEGRAM
👍5
#اخبار_هوش_مصنوعی
#اخبار
Please open Telegram to view this post
VIEW IN TELEGRAM
👍4
کدامیک از موارد زیر معایب الگوریتم CNN نیست؟
Anonymous Quiz
40%
الف)قابلیت تطبیق آسان با انواع وظایف مختلف با تغییر معماری شبکه
26%
ب)نیاز به مقدار زیادی داده برچسب دار برای آموزش
11%
ج)آموزش پیچیده و دشوار، به خصوص برای مجموعه داده های بزرگ
23%
د)نیاز به منابع محاسباتی زیاد برای آموزش و استقرار
❌شرکت openai، سازنده ChatGPT، در پروژهای با اسم رمز توت فرنگی»(Strawberry) روی فناوری جدیدی برای مدلهای هوش مصنوعی خود کار میکنه.با این فناوری، احتمالاً مدلهای این شرکت میتونن قابلیتهای استدلال پیشرفته انسانمانند یا حتی در سطح فوقبشری داشته باشن.
❌در سند داخلی این پروژه گفته شده که هدف Strawberry اینه که هوش مصنوعی این شرکت نهتنها پاسخهایی به پرسشها بده، بلکه توانایی این رو داشته باشه که در اینترنت بهطور مستقل و قابلاعتماد بتونه اونچه رو OpenAI تحقیق عمیق میدونه، انجام بده. طبق گفتههای محققان هوش مصنوعی، این توانایی همون چیزیه که تا به امروز مدلهای هوش مصنوعی فاقد اون بودن.
#اخبار_هوش_مصنوعی
#اخبار
Please open Telegram to view this post
VIEW IN TELEGRAM
👍6🔥1
This media is not supported in your browser
VIEW IN TELEGRAM
#ربات #robot
Please open Telegram to view this post
VIEW IN TELEGRAM
👍4
نمونه کد پایتون
import numpy as np
import tensorflow as tf
import matplotlib.pyplot as plt
from itertools import product
# set the param
plt.rc('figure', autolayout=True)
plt.rc('image', cmap='magma')
# define the kernel
kernel = tf.constant([[-1, -1, -1],
[-1, 8, -1],
[-1, -1, -1],
])
# load the image
image = tf.io.read_file('Ganesh.jpg')
image = tf.io.decode_jpeg(image, channels=1)
image = tf.image.resize(image, size=[300, 300])
# plot the image
img = tf.squeeze(image).numpy()
plt.figure(figsize=(5, 5))
plt.imshow(img, cmap='gray')
plt.axis('off')
plt.title('Original Gray Scale image')
plt.show();
# Reformat
image = tf.image.convert_image_dtype(image, dtype=tf.float32)
image = tf.expand_dims(image, axis=0)
kernel = tf.reshape(kernel, [*kernel.shape, 1, 1])
kernel = tf.cast(kernel, dtype=tf.float32)
# convolution layer
conv_fn = tf.nn.conv2d
image_filter = conv_fn(
input=image,
filters=kernel,
strides=1, # or (1, 1)
padding='SAME',
)
plt.figure(figsize=(15, 5))
# Plot the convolved image
plt.subplot(1, 3, 1)
plt.imshow(
tf.squeeze(image_filter)
)
plt.axis('off')
plt.title('Convolution')
# activation layer
relu_fn = tf.nn.relu
# Image detection
image_detect = relu_fn(image_filter)
plt.subplot(1, 3, 2)
plt.imshow(
# Reformat for plotting
tf.squeeze(image_detect)
)
plt.axis('off')
plt.title('Activation')
# Pooling layer
pool = tf.nn.pool
image_condense = pool(input=image_detect,
window_shape=(2, 2),
pooling_type='MAX',
strides=(2, 2),
padding='SAME',
)
plt.subplot(1, 3, 3)
plt.imshow(tf.squeeze(image_condense))
plt.axis('off')
plt.title('Pooling')
plt.show()
#آموزش #یادگیری_ماشین #machine_learning
#الگوریتم_یادگیری_ماشین
Please open Telegram to view this post
VIEW IN TELEGRAM
👍6
🔸 یکی از کارمندان ناشناس OpenAI به واشنگتن پست گفته:
《اون ها قبل از آنکه بدونند این مدل GPT-4o ایمنخ، برنامه رونمایی اون رو ترتیب دادن. ما اساساً در این فرایند شکست خوردیم.》 اون میگه OpenAI برای عرضه آخرین مدل هوش مصنوعی خودش عجله کرد.
🔸بااینحال، سخنگوی OpenAI به واشنگتن پست گفه عرضه GPT-4o باعث نشده در توجه به نکات ایمنی کمکاری بشه. بااینحال منبع ناشناس اذعان میکنه جدول زمانی بررسی ایمنی این مدل در یک هفته فشرده شده بود.
#اخبار_هوش_مصنوعی
#هوش_مصنوعی
Please open Telegram to view this post
VIEW IN TELEGRAM
👍6
#اخبار_هوش_مصنوعی
#اخبار
Please open Telegram to view this post
VIEW IN TELEGRAM
👍6
This media is not supported in your browser
VIEW IN TELEGRAM
#کاربرد_هوش_مصنوعی
Please open Telegram to view this post
VIEW IN TELEGRAM
👍6🔥3
ماشین بردار پشتیبان (SVM) چیست؟
#آموزش #یادگیری_ماشین #machine_learning
#الگوریتم_یادگیری_ماشین
Please open Telegram to view this post
VIEW IN TELEGRAM
👍8
This media is not supported in your browser
VIEW IN TELEGRAM
#خبار_هوش_مصنوعی
#اخبار
Please open Telegram to view this post
VIEW IN TELEGRAM
👍4💯2❤1
This media is not supported in your browser
VIEW IN TELEGRAM
#سرگرمی
Please open Telegram to view this post
VIEW IN TELEGRAM
👍7
در الگوریتم SVM، هایپرپلن کدامیک از موارد زیر را حداکثر میکند؟
Anonymous Quiz
51%
الف)فاصله بین نزدیکترین نقاط به هایپرپلن
15%
ب)تعداد نقاط داده در هر کلاس
11%
ج)بعد هایپرپلن
24%
د)احتمال صحیح بودن طبقهبندی
👍7
Please open Telegram to view this post
VIEW IN TELEGRAM
👍6❤1
#آموزش #یادگیری_ماشین #machine_learning
#الگوریتم_یادگیری_ماشین
Please open Telegram to view this post
VIEW IN TELEGRAM
👍5❤1