fa
Feedback
Machine learning books and papers

Machine learning books and papers

رفتن به کانال در Telegram

📈 تحلیل کانال تلگرام Machine learning books and papers

کانال Machine learning books and papers (@machine_learn) در بخش زبانی انگلیسی بازیگری فعال است. در حال حاضر جامعه شامل 24 518 مشترک است و جایگاه 8 056 را در دسته آموزش و رتبه 13 757 را در منطقه إيران دارد.

📊 شاخص‌های مخاطب و پویایی

از زمان ایجاد در невідомо، پروژه رشد سریعی داشته و 24 518 مشترک جذب کرده است.

بر اساس آخرین داده‌ها در تاریخ 24 ژوئن, 2026، کانال فعالیت پایداری دارد. در ۳۰ روز گذشته تغییر اعضا برابر -165 و در ۲۴ ساعت گذشته برابر -3 بوده و همچنان دسترسی گسترده‌ای حفظ شده است.

  • وضعیت تأیید: تأیید نشده
  • نرخ تعامل (ER): میانگین تعامل مخاطب 6.78% است و در ۲۴ ساعت نخست پس از انتشار، محتوا معمولاً 1.90% واکنش نسبت به کل مشترکان کسب می‌کند.
  • دسترسی پست‌ها: هر پست به طور میانگین 1 663 بازدید دریافت می‌کند. در اولین روز معمولاً 465 بازدید جمع‌آوری می‌شود.
  • واکنش‌ها و تعامل: مخاطبان به‌طور فعال حمایت می‌کنند؛ میانگین واکنش به هر پست 1 است.
  • علایق موضوعی: محتوا بر موضوعات کلیدی مانند disorder, psy, مقاله, framework, graph تمرکز دارد.

📝 توضیح و سیاست محتوایی

نویسنده این فضا را محل بیان دیدگاه‌های شخصی توصیف می‌کند:
Admin: @Raminmousa ID: @Machine_learn link: https://t.me/Machine_learn

به لطف به‌روزرسانی‌های پرتکرار (آخرین داده در تاریخ 25 ژوئن, 2026)، کانال همواره به‌روز و دارای دسترسی بالاست. تحلیل‌ها نشان می‌دهد مخاطبان به‌طور فعال با محتوا تعامل دارند و آن را به نقطه اثرگذاری مهم در دسته آموزش تبدیل کرده‌اند.

24 518
مشترکین
-324 ساعت
-477 روز
-16530 روز
آرشیو پست ها
Repost from Papers
با عرض سلام تيم تحقيقي ما در رابطه با Survey on whole slide image (WSI) نياز به نفرات ٤ و ٥ داره. استارت اين پروژه از ٢٠ دي ماه شروع ميشه . target journal: https://www.nature.com/srep/ دوستاني كه مايل به همكاري هستن ميتونن به ايدي بنده پيام بدن. @Raminmousa @Machine_learn https://t.me/+SP9l58Ta_zZmYmY0

Arcade Academy - Learn Python 📖 Book @Machine_learn
Arcade Academy - Learn Python 📖 Book @Machine_learn

KAG: Boosting LLMs in Professional Domains via Knowledge Augmented Generation Paper: https://arxiv.org/pdf/2409.13731v3.pdf C
KAG: Boosting LLMs in Professional Domains via Knowledge Augmented Generation Paper: https://arxiv.org/pdf/2409.13731v3.pdf Code: https://github.com/openspg/kag Dataset: 2WikiMultiHopQA 🔸@Machine_learn

Python for Everybody Exploring Data Using Python 3 📓 book @Machine_learn
Python for Everybody Exploring Data Using Python 3 📓 book @Machine_learn

Large Language Models Course: Learn by Doing LLM Projects 🖥 Github: https://github.com/peremartra/Large-Language-Model-Noteb
Large Language Models Course: Learn by Doing LLM Projects 🖥 Github: https://github.com/peremartra/Large-Language-Model-Notebooks-Course 📕 Paper: https://doi.org/10.31219/osf.io/qgxea @Machine_learn

🔗 Machine LearningNLP-RoBERTa for Sentiment Analysis with Python Code + Data RoBERTa is a powerful transformer-based language model that has shown exceptional performance in various natural language processing (NLP) tasks, including sentiment analysis. It builds upon the foundation of BERT (Bidirectional Encoder Representations from Transformers) and incorporates several key improvements: 📗 Key Improvements in RoBERTa: 1. Larger Training Dataset: RoBERTa is trained on a significantly larger dataset than BERT, exposing it to a wider range of linguistic patterns and nuances. This extensive training helps it capture more subtle and complex sentiment expressions. 2. Dynamic Masking: RoBERTa employs dynamic masking during training, where the masked tokens are randomly selected for each training epoch. This introduces more variability into the training process, forcing the model to learn more robust representations. 3. Longer Training Sequences: RoBERTa is trained on longer sequences, allowing it to capture longer-range dependencies within the text, which can be crucial for understanding sentiment in longer sentences or paragraphs. 4. Removal of Next Sentence Prediction: RoBERTa removes the next sentence prediction task, focusing solely on language modeling. This simplifies the training objective and allows the model to allocate more resources to improving language understanding. 🐍 How RoBERTa is Used for Sentiment Analysis: 1. Fine-tuning: A pre-trained RoBERTa model is fine-tuned on a specific sentiment analysis dataset. This involves adjusting the model's parameters to better suit the nuances of the target sentiment classification task. 2. Text Encoding: The input text is encoded into a sequence of numerical representations, which are then fed into the fine-tuned RoBERTa model. 3. Sentiment Prediction: The RoBERTa model processes the input sequence and generates a probability distribution over different sentiment classes (e.g., positive, negative, neutral). The class with the highest probability is typically selected as the predicted sentiment. 🔅 Benefits of Using RoBERTa for Sentiment Analysis: • High Accuracy: RoBERTa's strong language understanding capabilities and extensive training enable it to achieve high accuracy in sentiment analysis tasks, even in challenging scenarios. • Robustness: The dynamic masking and larger training dataset make RoBERTa more robust to variations in language style and sentiment expression. • Efficiency: RoBERTa can be efficiently fine-tuned on specific sentiment analysis datasets, allowing for rapid adaptation to new tasks. • Versatility: RoBERTa can be applied to a wide range of sentiment analysis tasks, including binary classification, multi-class classification, and fine-grained sentiment analysis. 🤖 In Summary RoBERTa is a state-of-the-art language model that has significantly advanced the field of sentiment analysis. Its ability to capture complex linguistic patterns and nuances, combined with its robustness and efficiency, makes it a valuable tool for a wide range of NLP applications.

📚 Transfer Learning for CNNs: Leveraging Pre-trained Models Transfer learning is a machine learning technique where a pre-trained model is used as a starting point for a new task. In the context of convolutional neural networks (CNNs), this means using a CNN that has been trained on a large dataset for one task (e.g., ImageNet) as a foundation for a new task (e.g., classifying medical images). 🌐 Why Transfer Learning? 1. Reduced Training Time: Training a CNN from scratch on a large dataset can be computationally expensive and time-consuming. Transfer learning allows you to leverage the knowledge learned by the pre-trained model, reducing training time significantly. 2. Improved Performance: Pre-trained models have often been trained on massive datasets, allowing them to learn general-purpose features that can be useful for a wide range of tasks. Using these pre-trained models can improve the performance of your new task. 3. Smaller Datasets: Transfer learning can be particularly useful when you have a small dataset for your new task. By using a pre-trained model, you can augment your limited data with the knowledge learned from the larger dataset. 💸 How Transfer Learning Works: 1. Choose a Pre-trained Model: Select a pre-trained CNN that is suitable for your task. Common choices include VGG16, ResNet, InceptionV3, and EfficientNet. 2. Freeze Layers: Typically, the earlier layers of a CNN learn general-purpose features, while the later layers learn more task-specific features. You can freeze the earlier layers of the pre-trained model to prevent them from being updated during training. This helps to preserve the learned features 3. Add New Layers: Add new layers, such as fully connected layers or convolutional layers, to the end of the pre-trained model. These layers will be trained on your new dataset to learn task-specific features. 4. Fine-tune: Train the new layers on your dataset while keeping the frozen layers fixed. This process is called fine-tuning. 🔊 Common Transfer Learning Scenarios: 1. Feature Extraction: Extract features from the pre-trained model and use them as input to a different model, such as a support vector machine (SVM) or a random forest. 2. Fine-tuning: Fine-tune the pre-trained model on your new dataset to adapt it to your specific task. 3. Hybrid Approach: Combine feature extraction and fine-tuning by extracting features from the pre-trained model and using them as input to a new model, while also fine-tuning some layers of the pre-trained model. Transfer learning is a powerful technique that can significantly improve the performance and efficiency of CNNs, especially when working with limited datasets or time constraints. 🚀 Common Used Transfer Learning Meathods: 1️⃣. VGG16: A simple yet effective CNN architecture with multiple convolutional layers followed by max-pooling layers. It excels at image classification tasks. 2️⃣ . MobileNet: Designed for mobile and embedded vision applications, MobileNet uses depthwise separable convolutions to reduce the number of parameters and computational cost. 3️⃣ DenseNet: Connects each layer to every other layer, promoting feature reuse and improving information flow. It often achieves high accuracy with fewer parameters. 4️⃣ Inception: Employs a combination of different sized convolutional filters in parallel, capturing features at multiple scales. It's known for its efficient use of computational resources. 5️⃣ ResNet: Introduces residual connections, enabling the network to learn more complex features by allowing information to bypass layers. It addresses the vanishing gradient problem. 6️⃣ EfficientNet: A family of models that systematically scale up network width, depth, and resolution using a compound scaling method. It achieves state-of-the-art accuracy with improved efficiency. 7️⃣ NASNet: Leverages neural architecture search to automatically design efficient CNN architectures. It often outperforms manually designed models in terms of accuracy and efficiency. @Machine_learn

با عرض سلام اخرين فرصت مشاركت در اين مقاله تا فردا شب...!

🌟 RLtools 🟢TD3 - Pendulum, Racing Car, MuJoCo Ant-v4, Acrobot; 🟢PPO - Pendulum, Racing Car, MuJoCo Ant-v4 (CPU), MuJoCo Ant-v4 (CUDA); 🟢Multi-Agent PPO - Bottleneck; 🟢SAC - Pendulum (CPU), Pendulum (CUDA), Acrobot. # Clone and checkout git clone https://github.com/rl-tools/example cd example git submodule update --init external/rl_tools # Build and run mkdir build cd build cmake .. -DCMAKE_BUILD_TYPE=Release cmake --build . ./my_pendulum 🟡Arxiv 🟡RLTools Design Studio 🟡Demo 🟡Zoo Experiment Tracking 🟡Google Collab (Python Interface) 🖥GitHub @Machine_learn

🌟 BioNeMo: A Framework for Developing AI Models for Drug Design. NVIDIA BioNeMo2 Framework is a set of tools, libraries, and
🌟 BioNeMo: A Framework for Developing AI Models for Drug Design. NVIDIA BioNeMo2 Framework is a set of tools, libraries, and models for computational drug discovery and design. ▶️ Pre-trained models: 🟢 ESM-2 is a pre-trained bidirectional encoder (BERT-like) for amino acid sequences. BioNeMo2 includes checkpoints with parameters 650M and 3B; 🟢 Geneformer is a tabular scoring model that generates a dense representation of a cell's scRNA by examining co-expression patterns in individual cells. ▶️ Datasets: 🟠 CELLxGENE is a collection of publicly available single-cell datasets collected by the CZI (Chan Zuckerberg Initiative) with a total volume of 24 million cells; 🟠 UniProt is a database of clustered sets of protein sequences from UniProtKB, created on the basis of translated genomic data. 🟡 Project page 🟡 Documentation 🖥 GitHub @Machine_learn

📌 Convex Optimization Book @Machine_learn
📌 Convex Optimization Book @Machine_learn

Repost from Papers
با عرض سلام اولين مقاله ي LLM ما در مرحله ي سابميت. نفر چهارم قابل اضافه كردن مي باشد. جهت مشاركت به ايدي بنده مراجعه كنين. ExKG-LLM: Leveraging Large Language Models for Automated Expan- sion of Cognitive Neuroscience Knowledge Graphs Abstract Objective: This paper introduces ExKG-LLM, an innovative framework designed to automate expanding cognitive neuroscience knowledge graphs (CNKG) using large-scale linguistic models (LLM). This model includes increasing knowledge graphs’ accuracy, completeness and usefulness in cognitive neuroscience. Method: To address the limitations of existing tools for creating knowledge accounts, this is especially true in dealing with the complex hierarchical relationships within the cognitive neuroscience literature. We use a large dataset of scientific paper and clinical reports, the ExKG-LLM framework, new entities and relationships in CNKG to apply state - state of the art LLM to extract, optimize and integrate, evaluating performance based on metrics such as precision, recall and graph density. Findings: The ExKG-LLM framework achieved significant improvements, including precision of 0.80 (increase of 6.67%), recall of 0.81 (increase of 15.71%), F1 score of 0.805 (increase of 11.81%), and number of edge nodes increased by 21.13% and 31.92%, respectively. Also, the density of the graph decreased slightly. Reflecting the broader but more fragmented structure, engagement rates have also increased by 20%, highlighting areas where stability needs improvement. From the perspective of a complex network, increasing the diameter of CNKG to 15 compared to 13 shows that although the size of ExKG-LLM has increased, more steps are now required to discover additional nodes.Although time complexity improved to 𝑂(𝑛log 𝑛), space complexity became less efficient, rising to 𝑂(𝑛2), indicating higher memory usage for managing the expanded graph. journal: https://www.inderscience.com/jhome.php?jcode=ijdmb هزينه مشاركت ١٢ ميليون @Raminmousa @Machine_learn https://t.me/+SP9l58Ta_zZmYmY0

Text-to-Image Generation with GANs #GANs @Machine_learn

Approaching (Almost) Any Machine Learning Problem #Book #ML @Machine_learn

Repost from Papers
با عرض سلام اولين مقاله ي LLM ما در مرحله ي سابميت. نفر چهارم قابل اضافه كردن مي باشد. جهت مشاركت به ايدي بنده مراجعه كنين. ExKG-LLM: Leveraging Large Language Models for Automated Expan- sion of Cognitive Neuroscience Knowledge Graphs Abstract Objective: This paper introduces ExKG-LLM, an innovative framework designed to automate expanding cognitive neuroscience knowledge graphs (CNKG) using large-scale linguistic models (LLM). This model includes increasing knowledge graphs’ accuracy, completeness and usefulness in cognitive neuroscience. Method: To address the limitations of existing tools for creating knowledge accounts, this is especially true in dealing with the complex hierarchical relationships within the cognitive neuroscience literature. We use a large dataset of scientific paper and clinical reports, the ExKG-LLM framework, new entities and relationships in CNKG to apply state - state of the art LLM to extract, optimize and integrate, evaluating performance based on metrics such as precision, recall and graph density. Findings: The ExKG-LLM framework achieved significant improvements, including precision of 0.80 (increase of 6.67%), recall of 0.81 (increase of 15.71%), F1 score of 0.805 (increase of 11.81%), and number of edge nodes increased by 21.13% and 31.92%, respectively. Also, the density of the graph decreased slightly. Reflecting the broader but more fragmented structure, engagement rates have also increased by 20%, highlighting areas where stability needs improvement. From the perspective of a complex network, increasing the diameter of CNKG to 15 compared to 13 shows that although the size of ExKG-LLM has increased, more steps are now required to discover additional nodes.Although time complexity improved to 𝑂(𝑛log 𝑛), space complexity became less efficient, rising to 𝑂(𝑛2), indicating higher memory usage for managing the expanded graph. journal: https://www.inderscience.com/jhome.php?jcode=ijdmb @Raminmousa @Machine_learn https://t.me/+SP9l58Ta_zZmYmY0

فقط نفر سوم از اين تحقيق باقي مونده. خروجي كار سه مقاله خواهد بود...! 💠💠 امكان ريكام نيز فراهم است.💠💠

فقط نفر ٤ از اين مقاله باقي مونده...!

New research papers and github codes 🟢Motivo 🟡Paper 🟡Demo 🟡Github 🟢Video Seal 🟡Paper 🟡Demo 🟡Github 🟢Flow Matching 🟡Paper 🟡Github 🟢Explore Theory-of-Mind 🟡Paper 🟡Github 🟡Dataset 🟢Large Concept Model (LCM) 🟡Paper 🟡Github 🟢Dynamic Byte Latent Transformer 🟡Paper 🟡Github 🟢Memory Layers. 🟡Paper 🟡Github 🟢EvalGym 🟡Paper 🟡Github 🟢CLIP 1.2 🟡Paper 🟡Github 🟡Dataset 🟡Model @Machine_learn