Web_programming
1.14K subscribers
354 photos
14 videos
125 files
1.23K links
Sharif web programming
If you have any questions, please feel free to ask(@yumcoder)
Download Telegram
1_MLP.zip
1023.6 MB
۱_مباحث پایه و شبکه های تماما متصل MLP

مهمترین و پایه ای ترین قسمت درس اینجاست از بقیه مباحث جدی تر بگیرینش در واقع بقیه مباحث صرفا ایده شبکه های عصبی رو تو جاهای مختلف به کار برده و اصل قضیه همین شبکه های عصبی fully connected (یا multi layer perceptron) هستش
2_CNN.zip
774 MB
۲_شبکه های کانولوشن CNN و کاربردهاشون (پایه بینایی ماشین)
3_RNN.zip
242.1 MB
۳_شبکه های عصبی بازگشتی RNN و به طور خاص LSTM برای تحلیل داده هایی پشت سرهمی و مرتبط به هم مثل داده های متنی
4_AE.zip
350.3 MB
۴_یادگیری بدون نظارت عمیق و شبکه های autoEncoder

حل مسائل بدون نظارت (unsupervised learning) با کمک شبکه های عصبی علی الخصوص شبکه های AutoEncoder
5_GAN.zip
478.8 MB
۵_شبکه های تخاصمی GAN
TA.zip
845.5 MB
ویدیوهای کلاس ta
جلس اول: مروری بر مقدمات پایتون
جلسه دوم و سوم: تنسورفلو ورژن ۱
جلسه چهارم: تنسورفلو ورژن ۲‌ و کراس

البته به نظرم پایتورچ یاد بگیرین و تمرینات رو هم با پایتورچ بزنین
HomeWork.zip
63.7 MB
تمرینات و پروژه درس
پاسخنامه خودم رو برای بعضی از تمرینات و پروژه توی گیتهاب گذاشتم (البته کاملن درست نیستن!)
Exam.zip
2.2 MB
امتحانات میانترم و پاینترم درس به همراه پاسخنامه
slides.zip
30.8 MB
اسلاید ها
DL_HW_Soleymani.zip
4.9 MB
ویدیو ها رو دسته بندی کردم به شکلی که ویدیوهای مربوط به یک مبحث با هم تو یه فایل زیپن پیشنهاد میکنم مبحث به مبحث منطبق با اسلایدها، ویدیوها رو ببینین و تمرین ازشون حل کنین



یادگیری عمیق دکتر فاطمی زاده
👍1
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no, interactive-widget=resizes-content" />

این تگ چه میکند؟
به ویژه این:
resizes-content
مهندسی داده یکی از فیلدایی‌ه که تو دانشگاه به اون صورت کورس تخصصی‌ای نداره که بتونیم عمیق یاد بگیریم، به‌شدت گسترده‌ست و buzz wordهای زیادی از لحظه‌ای که آدم شروع به کار کردن می‌کنه، داره.
ما چند تا از بچه‌های دانشکده، همراه با چند تا از هم‌کارامون تو شرکتای ایرانی، یه رودمپ واسه مهندسی‌داده درست کردیم (اسم تیم‌مون هم databurstه)
مثل کاری که سر درس وب با امید عزیز انجام دادیم، این ریپازیتوری هم پابلیک‌ه و دوست داریم بتونیم مشارکت شما رو هم داشته باشیم.
https://github.com/data-burst/data-engineering-roadmap

اگه ستاره بهمون بدین هم که دمتون‌گرم ❤️
🎉10👍3
https://jailbreakbench.github.io/

Jailbreak attacks cause large language models (LLMs) to generate harmful, unethical, or otherwise unwanted content. Evaluating these attacks presents a number of challenges, and the current landscape of benchmarks and evaluation techniques is fragmented. First, assessing whether LLM responses are indeed harmful requires open-ended evaluations which are not yet standardized. Second, existing works compute attacker costs and success rates in incomparable ways. Third, some works lack reproducibility as they withhold adversarial prompts or code, and rely on changing proprietary APIs for evaluation. Consequently, navigating the current literature and tracking progress can be challenging….
chrome://inspect

کاربرد این در کروم چیست؟
Forwarded from Yumcoder
Security Headers: Security headers are HTTP response headers that enable web servers to communicate security policies to client browsers. They provide an additional layer of protection against various types of attacks and vulnerabilities by instructing the browser on how to handle certain aspects of the web page.

—>> Content Security Policy (CSP):

- CSP allows website administrators to define a set of rules that control the sources from which a browser can load content. This helps prevent XSS attacks and data injection by specifying which scripts, stylesheets, images, and other resources are allowed to be executed or loaded.
- Example: Content-Security-Policy: script-src 'self' https://example.com;



—>> X-Content-Type-Options:

- This header helps to mitigate MIME type sniffing vulnerabilities by instructing the browser to adhere strictly to the declared content type and not to perform any MIME type sniffing.
- Example: X-Content-Type-Options: nosniff


—>> X-Frame-Options:

- X-Frame-Options header prevents Clickjacking attacks by specifying whether a browser should allow a web page to be displayed in a frame or iframe. It can deny framing altogether or restrict framing to the same origin.
- Example: X-Frame-Options: DENY


—>> X-XSS-Protection:

- X-XSS-Protection header enables the built-in XSS filter of modern web browsers. It helps to detect and mitigate reflected XSS attacks by sanitizing or blocking malicious scripts.
- Example: X-XSS-Protection: 1; mode=block


—>> Strict-Transport-Security (HSTS):

- HSTS instructs the browser to only communicate with the server over HTTPS, even if the user attempts to access the site via HTTP. This prevents SSL-stripping attacks and ensures secure connections.
- Example: Strict-Transport-Security: max-age=31536000; includeSubDomains; preload


—>> Referrer-Policy:

- This header controls how much referrer information (the URL of the webpage that linked to the resource being requested) should be included in the HTTP request headers. It helps to prevent sensitive data leakage.
- Example: Referrer-Policy: strict-origin-when-cross-origin
👍3
Forwarded from Hadi Esna
https://cryptocurrencyjobs.co/engineering/chronicle-labs-smart-contract-developer/
اینو یکی از دوستام فرستاد
به نظر میاد فرصت جالبی باشه برا کسی که می‌خواد تازه شروع کنه کار کردن روی smart contractهارو
👍1