buildfastwithai /
gen-ai-experiments
Collection of Jupyter notebooks is designed to provide you with a comprehensive guide to various AI tools and technologies
Loading repository data…
darinz / repository
A comprehensive collection of toolkits for essential AI/ML and Data Science libraries in Python. This toolkit is designed to help you quickly get started with scientific computing, data analysis, and artificial intelligence, machine learning & data science.
A comprehensive collection of toolkits for essential AI/ML and Data Science libraries. This toolkit is designed to help you quickly get started with scientific computing, data analysis, machine learning, deep learning, and data visualization.
All modules follow a consistent structure with:
01_basics_guide.md, 02_advanced_guide.md)environment.yml, requirements.txt) for isolated developmentUsing Conda (Recommended):
# Clone the repository
git clone https://github.com/darinz/Toolkit.git
cd Toolkit
# Create environment for specific module
cd NumPy
conda env create -f environment.yml
conda activate numpy-tutorials
# Repeat for other modules as needed
cd ../pandas
conda env create -f environment.yml
conda activate pandas-tutorials
# For PyTorch submodules, navigate to specific subdirectory
cd ../PyTorch/01_Tensor
conda env create -f environment.yml
conda activate pytorch-tensor-tutorials
Using pip:
# Install dependencies for specific module
cd NumPy
pip install -r requirements.txt
# Repeat for other modules as needed
cd ../pandas
pip install -r requirements.txt
# For PyTorch submodules, navigate to specific subdirectory
cd ../PyTorch/01_Tensor
pip install -r requirements.txt
01_python_basics_guide.md, 02_oop_guide.md, 03_functional_programming_guide.md, 04_python_best_practices_guide.md, 05_data_manipulation_guide.md, 06_data_cleaning_guide.md, 07_eda_guide.md, 08_feature_engineering_guide.md, 09_supervised_learning_guide.md, 10_unsupervised_learning_guide.md, 11_model_evaluation_guide.md, 12_hyperparameter_tuning_guide.md, 13_neural_networks_guide.md, 14_computer_vision_guide.md, 15_nlp_guide.md, 16_reinforcement_learning_guide.md01_numpy_basics_guide.md, 02_array_manipulation_guide.md, 03_advanced_indexing_guide.md, 04_linear_algebra_guide.md, 05_random_generation_guide.md, numpy_ultraquick_tutorial.ipynb, random_generation.py01_pandas_basics_guide.md, 02_data_analysis_guide.md, 03_data_visualization_guide.md, 04_time_series_guide.md, pandas_df_ultraquick_tutorial.ipynb01_matplotlib_basics_guide.md, 02_plot_types_guide.md, 03_customization_guide.md, 04_subplots_layout_guide.md, 05_statistical_plots_guide.md, 06_3d_plotting_guide.md, 07_advanced_features_guide.md, 08_publication_quality_guide.md01_seaborn_basics_guide.md, 02_statistical_plots_guide.md, 03_categorical_plots_guide.md, 04_distribution_analysis_guide.md, 05_correlation_analysis_guide.md, 06_multi_plot_grids_guide.md, 07_advanced_features_guide.md, 08_real_world_applications_guide.md01_plotly_basics_guide.md, 02_plot_types_guide.md, 03_interactive_features_guide.md, 04_customization_guide.md, 05_subplots_layout_guide.md, 06_3d_visualization_guide.md, 07_geographic_visualization_guide.md, 08_statistical_visualization_guide.md, 09_advanced_features_guide.md, 10_dash_applications_guide.md01_tensorflow_basics_guide.md, 02_neural_networks_guide.md, 03_cnn_guide.md, 04_rnn_guide.md, 05_data_pipelines_guide.md, 06_advanced_guide.md01_ml_basics_guide.md, 02_supervised_learning_guide.md, 03_unsupervised_learning_guide.md, 04_feature_engineering_guide.md, 05_model_selection_guide.md, 06_real_world_applications_guide.md01_jupyter_basics_guide.md, 02_jupyterlab_interface_guide.md, 03_magic_commands_guide.md, 04_interactive_widgets_guide.md, 05_best_practices_guide.md, 06_advanced_features_guide.md, 07_deployment_guide.mdadvanced_pytorch_techniques_guide.mdcomprehensive_tensor_guide.md, tensor_operations_guide.md, pt_tensor.ipynb, README.md, environment.yml, requirements.txtautograd_comprehensive_guide.md, pt_autograd.ipynb, README.md, environment.yml, requirements.txtneural_networks_comprehensive_guide.md, pt_neural_networks.ipynb, README.md, environment.yml, requirements.txtimage_classification_comprehensive_guide.md, image_classifier.ipynb, README.md, environment.yml, requirements.txt01_r_basics_guide.md, 02_data_structures_guide.md, 03_data_manipulation_guide.md, 04_data_visualization_guide.md, 05_statistical_analysis_guide.md, 06_programming_guide.md, 07_advanced_features_guide.md, 08_real_world_applications_guide.md# Create new environment
conda env create -f environment.yml
# Activate environment
conda activate [module-name]-tutorials
# For PyTorch submodules
conda activate pytorch-[submodule]-tutorials
# Update environment
conda env update -f environment.yml --prune
# Remove environment
conda remove --name [module-name]-tutorials --all
# List environments
conda env list
# Start Jupyter Lab
jupyter lab
# Start Jupyter Notebook
jupyter notebook
# Start with specific port
jupyter lab --port=8888
# Start with no browser
jupyter lab --
Selected from shared topics, language and repository description—not editorial ratings.
buildfastwithai /
Collection of Jupyter notebooks is designed to provide you with a comprehensive guide to various AI tools and technologies
CoenMeintjes /
A comprehensive collection of Jupyter Notebook templates for data science tasks, developed to improve workflow efficiency and cover a wide range of topics, including exploratory data analysis, hypothesis testing, regression models, and machine learning models.
leslie89757 /
🚀 A comprehensive LangGraph tutorial collection with hands-on Jupyter notebooks 一个全面的 LangGraph 教程项目,通过 Jupyter Notebook 形式展现,涵盖了 LangGraph 的所有核心概念和高级特性。专为开发者学习和实践而设计。
CuAuPro /
The Fuzzy-Predictive-Control repository is a comprehensive collection of Python Jupyter Notebooks that demonstrate the implementation of fuzzy modeling and predictive functional control techniques.
Morikashi /
A meticulously curated collection of hands-on Jupyter notebooks, designed to illuminate the comprehensive application of MLflow across a spectrum ranging from foundational Machine Learning principles to pioneering Generative AI paradigms.
machinelearningzuu /
Welcome to the "LLM Notebooks" repository, dedicated to exploring and understanding the capabilities of Large Language Models (LLMs). This collection of Jupyter notebooks serves as a comprehensive resource for experimenting with state-of-the-art language models, including but not limited to OpenAI's GPT-3.5.