| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Original HTTPS Page] |
Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.
You must be logged in to block users.
Contact GitHub support about this user’s behavior. Learn more about reporting abuse.
Report abusegraph TD;
DomainKnowledge[Domain Knowledge]-->MachineLearning[Machine Learning];
MachineLearning[Machine Learning]-->StatisticalLearning[Statistical Learning];
MachineLearning[Machine Learning]-->DeepLearning[Deep Learning];
DomainKnowledge[Domain Knowledge]-->BackendDevelopment[Backend Development];
DeepLearning[Deep Learning]-->ImageClassification[Image Classification];
ImageClassification[Image Classification]-->LabelNoise[Label Noise];
DeepLearning[Deep Learning]-->NaturalLanguageProcessing[Natural Language Processing];
NaturalLanguageProcessing[Natural Language Processing]-->TopicModeling[Topic Modeling];
NaturalLanguageProcessing[Natural Language Processing]-->LLMApplication[LLM Application];
LLMApplication[LLM Application]-->RAG[Retrieval-Augmented Generation];
LLMApplication[LLM Application]-->AIAgent[AI Agent];
DeepLearning[Deep Learning]-->Multimodality[Multimodality];
Multimodality[Multimodality]-->ImageTextClassification[Image-Text Classification];
Multimodality[Multimodality]-->VisualQuestionAnswering[Visual Question Answering];
| Skills | |
|---|---|
| Focus | |
| OS | |
| Languages | |
| LLM Applications | |
| IDEs | |
| Tools For ML | |
| Tools For DL | |
| Web Deployment | |
| Database | |
| Version Control | |
| DevOps | |
| Self-developed Package | |
| Statistic Tools | |
| Visualization |
Photo by Google DeepMind on Unsplash
↗My NumPy-based projects have been successfully integrated into my own open-source Python library, named MLForce. This library is also readily accessible on the PyPI Community.
A robust implementation of multilayer perceptrons, entirely built upon the powerful NumPy library.
Advantages of our implementation:
import numpy_keras as keras
import numpy_keras.autograd as keras
layers = [
Input(input_dim=2),
Dense(units=4, activation='leaky_relu', init='kaiming_normal', init_params={'mode': 'out'}),
Dense(units=3, activation='hardswish', init='xavier_normal'),
Dense(units=2, activation='relu', init='kaiming_normal', init_params={'mode': 'in'}),
Dense(units=1, activation='tanh', init='xavier_uniform')
]
mlp = MultilayerPerceptron(layers)
mlp.compile(optimizer='Adam', metrics=['MeanSquareError']) mlp.fit(X, y, epochs=3, batch_size=8, use_progress_bar=True)
This project implements nine different Non-negative Matrix Factorization (NMF) algorithms and compares the robustness of each algorithm to five various types of noise in real-world data applications.
We conduct a seires of experiments, thus when developing your own algorithms, these results could act as a baseline. The results of the experiments (2 datasets × 5 noise types × 2 noise levels × 5 random seeds implicitly) are displayed in the repository.
Our development framework empowers you to effortlessly create your own NMF algorithms with minimal Python scripting.
Our framework offers well-established pipelines, accommodating both standard and customized NMF tests.
For personalized NMF models, the nmf parameter accepts a BasicNMF object. You can seamlessly insert your own NMF model into our pipeline to evaluate its performance.
We've harnessed the power of multiprocessing for extensive experiments, significantly enhancing efficiency. This approach has halved the overall experiment duration, reducing it to 30% ~ 50% of the time it would take to run each experiment sequentially.
For a comprehensive analysis of your algorithm, our platform enables conducting multiple experiments across various datasets:
from algorithm.pipeline import Experimentexp = Experiment() exp.choose('L1NormRegularizedNMF') exp.execute()
Note that the initial parameter in these experiments can also be BasicNMF object, allowing the direct integration of your custom NMF model for thorough evaluation and testing.
This project aims to reproduce various convolutional neural networks and modify them to our specific requirements.
| AlexNet | VGGNet | SpinalNet | ResNet | |
| Accuracy | 87.95% | 89.80% | 87.15% | 89.28% |
| Precision | 87.62% | 90.01% | 86.18% | 89.24% |
| Recall | 87.95% | 89.80% | 87.15% | 89.28% |
| F1 score | 86.59% | 88.42% | 85.28% | 88.30% |
| AlexNet | VGGNet | SpinalNet | ResNet | |
| Accuracy | 86.96% | 87.24% | 85.92% | 86.88% |
| Precision | 85.55% | 86.43% | 85.92% | 86.88% |
| Recall | 86.96% | 87.24% | 85.92% | 86.88% |
| F1 score | 85.58% | 85.66% | 84.07% | 85.68% |
This project involves a multi-label multi-classification problem. We deployed four pre-trained image models and two pre-trained text models. To enhance performance, we developed 12 multi-modal models using self-attention and cross-attention mechanisms. The project poster showcases some valuable techniques and intriguing discoveries.
This project is an experimental repository focusing on dealing with datasets containing a high level of noisy labels (50% and above). This repository features experiments conducted on the FashionMNIST and CIFAR datasets using the ResNet34 as the baseline classifier.
The repository explores various training strategies (Trainer objects), including ForwardLossCorrection, CoTeaching, JoCoR, and O2UNet. Specifically, for datasets with unknown transition matrices, DualT is employed as the Transition Matrix Estimator.
| Actual Transition Matrix | Estimated Transition Matrix | ||||
|---|---|---|---|---|---|
| 0.5 | 0.2 | 0.3 | 0.473 | 0.209 | 0.309 |
| 0.3 | 0.5 | 0.2 | 0.306 | 0.485 | 0.232 |
| 0.2 | 0.3 | 0.5 | 0.221 | 0.306 | 0.460 |
A PyTorch-based implementation that leverages Transformer architectures to enhance the handling and design of tabular data.
A framework for multimodal-multilabel-multistage classification utilizing advanced pretrained models like CLIP and BLIP.
Diagrams of implementation:
| LLM | No. Parameters | Task | LoRa/QLoRa | Code |
| Gemma-IT | 2B | Text-to-text Generation | QLoRa | Link |
| Qwen 2 | 1.5B | Named Entity Recognition | LoRa | Link |
| Llama 3 | 8B | Cross-Linguistic Adaptation | LoRa | Link |
| Specialization | Launcher | Completion Date | Credential |
| Generative Adversarial Networks (GANs) | DeepLearning.AI | Jun 2024 | Link |
| Natural Language Processing | DeepLearning.AI | Oct 2023 | Link |
| Deep Learning | DeepLearning.AI | Aug 2023 | Link |
| Mathematics for Machine Learning and Data Science | DeepLearning.AI | Aug 2023 | Link |
| Applied Data Science with Python | University of Michigan | Jul 2023 | Link |
| Machine Learning | DeepLearning.AI & Stanford University | Jul 2023 | Link |
| Mathematics for Machine Learning | Imperial College London | Jun 2023 | Link |
| Expressway to Data Science: Python Programming | University of Colorado Boulder | Dec 2022 | Link |
| Python 3 Programming | University of Michigan | Dec 2022 | Link |
| Introduction to Scripting in Python | Rice University | Nov 2022 | Link |
| Statistics with Python | University of Michigan | Nov 2022 | Link |
| Excel Skills for Data Analytics and Visualization | Macquarie University | Oct 2022 | Link |
| Python for Everybody | University of Michigan | Oct 2022 | Link |
| Excel Skills for Business | Macquarie University | Sep 2022 | Link |
If you have any questions or need further information, please don't hesitate to open an issue: Ask a Question.
🤗 Transformers: the model-definition framework for state-of-the-art machine learning models in text, vision, audio, and multimodal models, for both inference and training.
Handwritten character recognition on EMNIST ByClass using Convolutional Neural Networks with PyTorch.
A PyTorch-based implementation that leverages Transformer architectures to enhance the handling and design of tabular data. With the capabilities of Transformer models, we aim to provide data scien…
A neural network framework from scratch using NumPy. Offers almost all basic functionalities . Suitable for classification and regression tasks. 一个用NumPy从零实现的神经网络框架。提供几乎所有基本功能。适用于分类和回归任务。
Python 10
Explore practical fine-tuning of LLMs with Hands-on Lora. Dive into examples that showcase efficient model adaptation across diverse tasks.
| Back | FazBrowse Home | New Git URL |