weightslab 1.3.1__tar.gz → 1.3.3__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- weightslab-1.3.3/.coverage +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/.gitignore +4 -0
- weightslab-1.3.3/CHANGELOG.md +1 -0
- {weightslab-1.3.1/weightslab.egg-info → weightslab-1.3.3}/PKG-INFO +16 -14
- {weightslab-1.3.1 → weightslab-1.3.3}/README.md +15 -13
- {weightslab-1.3.1 → weightslab-1.3.3}/docs/_static/custom.css +29 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/docs/_static/examples-gallery.js +34 -15
- {weightslab-1.3.1 → weightslab-1.3.3}/docs/examples/lightning/classification.rst +1 -1
- {weightslab-1.3.1 → weightslab-1.3.3}/docs/examples/pytorch/classification.rst +10 -1
- {weightslab-1.3.1 → weightslab-1.3.3}/docs/examples/pytorch/clustering.rst +10 -1
- {weightslab-1.3.1 → weightslab-1.3.3}/docs/examples/pytorch/detection.rst +10 -1
- {weightslab-1.3.1 → weightslab-1.3.3}/docs/examples/pytorch/generation.rst +10 -1
- {weightslab-1.3.1 → weightslab-1.3.3}/docs/examples/pytorch/segmentation.rst +10 -1
- {weightslab-1.3.1 → weightslab-1.3.3}/docs/examples/ultralytics/detection.rst +1 -1
- {weightslab-1.3.1 → weightslab-1.3.3}/docs/examples/usecases/lidar_detection.rst +2 -2
- {weightslab-1.3.1 → weightslab-1.3.3}/docs/examples/usecases/loss_shape_classification.rst +10 -1
- {weightslab-1.3.1 → weightslab-1.3.3}/docs/pytorch_lightning.rst +2 -2
- {weightslab-1.3.1 → weightslab-1.3.3}/docs/segmentation_usecase.rst +1 -1
- {weightslab-1.3.1 → weightslab-1.3.3}/docs/ultralytics.rst +2 -2
- {weightslab-1.3.1 → weightslab-1.3.3}/docs/usecases.rst +1 -1
- {weightslab-1.3.1 → weightslab-1.3.3}/docs/user_commands.rst +81 -1
- {weightslab-1.3.1 → weightslab-1.3.3}/docs/user_functions.rst +7 -1
- {weightslab-1.3.1 → weightslab-1.3.3}/tests/backend/test_ui_docker_bridge.py +5 -5
- {weightslab-1.3.1 → weightslab-1.3.3}/tests/components/test_checkpoint_workflow.py +1 -1
- {weightslab-1.3.1 → weightslab-1.3.3}/tests/gRPC/test_grpc_histogram_categorical.py +60 -0
- weightslab-1.3.3/tests/general/test_signal_refinements.py +163 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/tests/general/test_signals.py +70 -1
- {weightslab-1.3.1 → weightslab-1.3.3}/tests/integrations/ultralytics/ddp/ddp_ablation.py +2 -2
- {weightslab-1.3.1 → weightslab-1.3.3}/tests/integrations/ultralytics/ddp/ddp_test_suite.py +2 -2
- {weightslab-1.3.1 → weightslab-1.3.3}/tests/model/test_constraint_generation.py +24 -6
- {weightslab-1.3.1 → weightslab-1.3.3}/tests/model/test_model_with_ops.py +3 -3
- {weightslab-1.3.1 → weightslab-1.3.3}/tests/model/test_model_with_ops_unit.py +1 -1
- {weightslab-1.3.1 → weightslab-1.3.3}/tests/model/test_tracking.py +1 -1
- {weightslab-1.3.1 → weightslab-1.3.3}/weightslab/__init__.py +10 -1
- {weightslab-1.3.1 → weightslab-1.3.3}/weightslab/_version.py +3 -3
- {weightslab-1.3.1 → weightslab-1.3.3}/weightslab/backend/ledgers.py +13 -1
- {weightslab-1.3.1 → weightslab-1.3.3}/weightslab/backend/logger.py +93 -4
- {weightslab-1.3.1 → weightslab-1.3.3}/weightslab/backend/model_interface.py +30 -6
- {weightslab-1.3.1 → weightslab-1.3.3}/weightslab/components/checkpoint_manager.py +37 -3
- {weightslab-1.3.1 → weightslab-1.3.3}/weightslab/data/data_samples_with_ops.py +1 -1
- {weightslab-1.3.1 → weightslab-1.3.3}/weightslab/data/dataframe_manager.py +9 -9
- {weightslab-1.3.1 → weightslab-1.3.3}/weightslab/data/h5_array_store.py +12 -4
- {weightslab-1.3.1 → weightslab-1.3.3}/weightslab/docker/docker/utils/test-deployment.sh +2 -2
- weightslab-1.3.3/weightslab/examples/Notebooks/PyTorch/ws-classification.ipynb +503 -0
- weightslab-1.3.3/weightslab/examples/Notebooks/PyTorch/ws-clustering.ipynb +241 -0
- weightslab-1.3.3/weightslab/examples/Notebooks/PyTorch/ws-detection.ipynb +241 -0
- weightslab-1.3.3/weightslab/examples/Notebooks/PyTorch/ws-generation.ipynb +241 -0
- weightslab-1.3.3/weightslab/examples/Notebooks/PyTorch/ws-segmentation.ipynb +241 -0
- weightslab-1.3.3/weightslab/examples/Notebooks/Usecases/ws-segmentation-loss-shapes-classification.ipynb +522 -0
- {weightslab-1.3.1/weightslab/examples/Usecases/ws-loss_shapes_classification_per_sample → weightslab-1.3.3/weightslab/examples/PyTorch/wl-detection}/README.md +1 -1
- {weightslab-1.3.1/weightslab/examples/Usecases/ws-loss_shapes_classification_per_sample → weightslab-1.3.3/weightslab/examples/PyTorch/wl-detection}/main.py +2 -1
- {weightslab-1.3.1/weightslab/examples/Usecases/ws-2d-lidar-detection → weightslab-1.3.3/weightslab/examples/Usecases/wl-2d-lidar-detection}/README.md +3 -3
- {weightslab-1.3.1/weightslab/examples/Usecases/ws-3d-lidar-detection → weightslab-1.3.3/weightslab/examples/Usecases/wl-3d-lidar-detection}/README.md +4 -4
- {weightslab-1.3.1/weightslab/examples/Usecases/ws-3d-lidar-detection → weightslab-1.3.3/weightslab/examples/Usecases/wl-3d-lidar-detection}/utils/model.py +1 -1
- weightslab-1.3.3/weightslab/examples/Usecases/wl-classification-signals_shape_classification/config.yaml +48 -0
- weightslab-1.3.3/weightslab/examples/Usecases/wl-classification-signals_shape_classification/main.py +252 -0
- weightslab-1.3.3/weightslab/examples/Usecases/wl-classification-signals_shape_classification/utils/criterions.py +36 -0
- weightslab-1.3.3/weightslab/examples/Usecases/wl-classification-signals_shape_classification/utils/data.py +23 -0
- weightslab-1.3.3/weightslab/examples/Usecases/wl-classification-signals_shape_classification/utils/model.py +19 -0
- weightslab-1.3.3/weightslab/examples/Usecases/wl-classification-signals_shape_classification/utils/signals.py +48 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/weightslab/proto/experiment_service.proto +9 -0
- weightslab-1.3.3/weightslab/proto/experiment_service_pb2.py +198 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/weightslab/src.py +693 -45
- {weightslab-1.3.1 → weightslab-1.3.3}/weightslab/trainer/services/agent/intent_prompt.py +0 -3
- {weightslab-1.3.1 → weightslab-1.3.3}/weightslab/trainer/services/data_service.py +20 -9
- {weightslab-1.3.1 → weightslab-1.3.3}/weightslab/trainer/services/experiment_service.py +19 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/weightslab/trainer/trainer_services.py +27 -1
- weightslab-1.3.3/weightslab/tunnel.py +349 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/weightslab/ui_docker_bridge.py +45 -10
- {weightslab-1.3.1 → weightslab-1.3.3/weightslab.egg-info}/PKG-INFO +16 -14
- {weightslab-1.3.1 → weightslab-1.3.3}/weightslab.egg-info/SOURCES.txt +102 -93
- {weightslab-1.3.1 → weightslab-1.3.3}/weightslab.egg-info/scm_file_list.json +102 -93
- weightslab-1.3.3/weightslab.egg-info/scm_version.json +8 -0
- weightslab-1.3.1/CHANGELOG.md +0 -1
- weightslab-1.3.1/weightslab/examples/PyTorch/ws-detection/README.md +0 -102
- weightslab-1.3.1/weightslab/examples/PyTorch/ws-detection/main.py +0 -340
- weightslab-1.3.1/weightslab/examples/Usecases/ws-loss_shapes_classification_per_sample/config.yaml +0 -50
- weightslab-1.3.1/weightslab/examples/Usecases/ws-loss_shapes_classification_per_sample/utils/criterions.py +0 -361
- weightslab-1.3.1/weightslab/examples/Usecases/ws-loss_shapes_classification_per_sample/utils/data.py +0 -226
- weightslab-1.3.1/weightslab/examples/Usecases/ws-loss_shapes_classification_per_sample/utils/model.py +0 -134
- weightslab-1.3.1/weightslab/proto/experiment_service_pb2.py +0 -196
- weightslab-1.3.1/weightslab.egg-info/scm_version.json +0 -8
- {weightslab-1.3.1 → weightslab-1.3.3}/.gitattributes +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/.github/workflows/ci.yml +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/.github/workflows/docs-pages.yml +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/.github/workflows/release.yml +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/AGENTS.md +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/LICENSE +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/agent_config.yaml +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/docs/_static/.gitkeep +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/docs/_static/favicon.png +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/docs/_static/github-stars.js +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/docs/_static/logo-dark.png +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/docs/_static/logo-light.png +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/docs/_static/version-switcher.js +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/docs/_static/weights_studio_architecture.png +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/docs/_static/wl-ribbon.js +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/docs/_static/wl-topnav.js +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/docs/_templates/.gitkeep +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/docs/_templates/sidebar/brand.html +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/docs/agent.rst +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/docs/conf.py +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/docs/configuration.rst +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/docs/data_exploration.rst +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/docs/examples/index.rst +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/docs/examples/lightning/index.rst +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/docs/examples/pytorch/index.rst +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/docs/examples/ultralytics/index.rst +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/docs/examples/usecases/index.rst +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/docs/four_way_approach.rst +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/docs/grpc/audit_logger.rst +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/docs/grpc/grpc_functions.rst +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/docs/grpc/index.rst +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/docs/hyperparameters.rst +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/docs/index.rst +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/docs/logger.rst +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/docs/model_interaction.rst +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/docs/quickstart.rst +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/docs/requirements.txt +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/docs/usage/docker.rst +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/docs/usage/good_practice.rst +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/docs/usage/parameters.rst +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/docs/usage.rst +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/docs/weights_studio.rst +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/pyproject.toml +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/setup.cfg +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/tests/__init__.py +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/tests/backend/__init__.py +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/tests/backend/test_audit_logger.py +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/tests/backend/test_cli_additional_unit.py +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/tests/backend/test_compare_dataloaders.py +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/tests/backend/test_data_loader_interface.py +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/tests/backend/test_instance_signal_logger.py +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/tests/backend/test_ledgers.py +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/tests/backend/test_logger_core.py +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/tests/backend/test_model_interface_unit.py +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/tests/backend/test_optimizer_interface.py +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/tests/backend/test_optimizer_interface_additional_unit.py +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/tests/backend/test_write_dataframe.py +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/tests/backend/test_write_history.py +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/tests/chaos_monkeys_utests/__init__.py +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/tests/chaos_monkeys_utests/test_grpc_chaos_monkey_robustness.py +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/tests/components/__init__.py +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/tests/components/test_experiment_hash_and_art.py +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/tests/components/test_global_monitoring_unit.py +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/tests/gRPC/__init__.py +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/tests/gRPC/test_get_point_cloud.py +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/tests/gRPC/test_grpc_tag_operations.py +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/tests/gRPC/test_grpc_user_actions.py +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/tests/general/__init__.py +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/tests/general/test_auditor_mode.py +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/tests/general/test_cli.py +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/tests/general/test_hyperparams.py +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/tests/general/test_logger_snapshot_rotation.py +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/tests/general/test_signals_wrapping.py +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/tests/integrations/__init__.py +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/tests/integrations/test_pytorch_lightning_integration.py +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/tests/model/__init__.py +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/tests/model/test_dependency_patterns.py +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/tests/model/test_logger.py +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/tests/modules/__init__.py +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/tests/modules/test_modules_with_ops.py +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/tests/test_secure_docker.py +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/tests/test_src_functions.py +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/tests/trainer/__init__.py +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/tests/trainer/services/__init__.py +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/tests/trainer/services/test_agent_live_prompt_evaluation.py +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/tests/trainer/services/test_agent_model_and_safety_unit.py +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/tests/trainer/services/test_agent_prompt_unit.py +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/tests/trainer/services/test_agent_service_unit.py +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/tests/trainer/services/test_trainer_services_server.py +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/tests/trainer/services/test_trainer_services_unit.py +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/tests/trainer/test_trainer_tools.py +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/tests/utils/__init__.py +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/tests/utils/test_computational_graph_utils_unit.py +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/tests/utils/test_logs_unit.py +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/tests/utils/test_modules_dependencies_unit.py +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/tests/utils/test_plot_graph_render_unit.py +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/tests/utils/test_plot_graph_unit.py +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/tests/utils/test_shape_prop_unit.py +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/tests/utils/test_utils_tools_unit.py +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/tests/watchdog/__init__.py +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/tests/watchdog/test_lock_monitor.py +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/tests/watchdog/test_watchdog.py +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/weightslab/art.py +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/weightslab/backend/__init__.py +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/weightslab/backend/audit_logger.py +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/weightslab/backend/cli.py +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/weightslab/backend/dataloader_interface.py +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/weightslab/backend/optimizer_interface.py +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/weightslab/components/__init__.py +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/weightslab/components/evaluation_controller.py +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/weightslab/components/experiment_hash.py +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/weightslab/components/global_monitoring.py +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/weightslab/components/parallel_primitives.py +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/weightslab/components/tracking.py +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/weightslab/data/__init__.py +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/weightslab/data/array_proxy.py +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/weightslab/data/data_utils.py +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/weightslab/data/h5_dataframe_store.py +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/weightslab/data/point_cloud_utils.py +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/weightslab/data/sample_stats.py +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/weightslab/docker/Dockerfile +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/weightslab/docker/docker/.dockerignore +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/weightslab/docker/docker/.env.example +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/weightslab/docker/docker/DEPLOYMENT.md +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/weightslab/docker/docker/docker-compose.yml +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/weightslab/docker/docker/nginx-entrypoint.sh +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/weightslab/docker/docker/nginx.base-path.conf copy.template +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/weightslab/docker/docker/nginx.base-path.conf.template +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/weightslab/docker/docker/nginx.conf +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/weightslab/docker/docker/test-deployment.sh +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/weightslab/docker/docker/utils/build-and-deploy.sh +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/weightslab/docker/docker/utils/generate-certs-auth-token.ps1 +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/weightslab/docker/docker/utils/generate-certs-auth-token.sh +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/weightslab/docker/envoy/envoy.downstream_plaintext.yaml +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/weightslab/docker/envoy/envoy.downstream_upstream_plaintext.yaml +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/weightslab/docker/envoy/envoy.upstream_plaintext.yaml +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/weightslab/docker/envoy/envoy.yaml +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/weightslab/docker/nginx.conf +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/weightslab/examples/Docker_training/README.md +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/weightslab/examples/Docker_training/docker_in_docker/Dockerfile +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/weightslab/examples/Docker_training/docker_in_docker/README.md +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/weightslab/examples/Docker_training/docker_in_docker/docker-compose.yml +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/weightslab/examples/Docker_training/docker_in_docker/entrypoint.sh +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/weightslab/examples/Docker_training/siblings_self_contained/Dockerfile +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/weightslab/examples/Docker_training/siblings_self_contained/README.md +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/weightslab/examples/Docker_training/siblings_self_contained/docker-compose.yml +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/weightslab/examples/Docker_training/siblings_self_contained/entrypoint.sh +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/weightslab/examples/Docker_training/siblings_self_contained/ui-compose.yml +0 -0
- {weightslab-1.3.1/weightslab/examples/Lightning/ws-classification → weightslab-1.3.3/weightslab/examples/Lightning/wl-classification}/config.yaml +0 -0
- {weightslab-1.3.1/weightslab/examples/Lightning/ws-classification → weightslab-1.3.3/weightslab/examples/Lightning/wl-classification}/main.py +0 -0
- {weightslab-1.3.1/weightslab/examples/PyTorch/ws-classification → weightslab-1.3.3/weightslab/examples/PyTorch/wl-classification}/config.yaml +0 -0
- {weightslab-1.3.1/weightslab/examples/PyTorch/ws-classification → weightslab-1.3.3/weightslab/examples/PyTorch/wl-classification}/main.py +0 -0
- {weightslab-1.3.1/weightslab/examples/PyTorch/ws-clustering → weightslab-1.3.3/weightslab/examples/PyTorch/wl-clustering}/config.yaml +0 -0
- {weightslab-1.3.1/weightslab/examples/PyTorch/ws-clustering → weightslab-1.3.3/weightslab/examples/PyTorch/wl-clustering}/face/__init__.py +0 -0
- {weightslab-1.3.1/weightslab/examples/PyTorch/ws-clustering → weightslab-1.3.3/weightslab/examples/PyTorch/wl-clustering}/face/data.py +0 -0
- {weightslab-1.3.1/weightslab/examples/PyTorch/ws-clustering → weightslab-1.3.3/weightslab/examples/PyTorch/wl-clustering}/face/model.py +0 -0
- {weightslab-1.3.1/weightslab/examples/PyTorch/ws-clustering → weightslab-1.3.3/weightslab/examples/PyTorch/wl-clustering}/face/signals.py +0 -0
- {weightslab-1.3.1/weightslab/examples/PyTorch/ws-clustering → weightslab-1.3.3/weightslab/examples/PyTorch/wl-clustering}/face/utils.py +0 -0
- {weightslab-1.3.1/weightslab/examples/PyTorch/ws-clustering → weightslab-1.3.3/weightslab/examples/PyTorch/wl-clustering}/main.py +0 -0
- {weightslab-1.3.1/weightslab/examples/PyTorch/ws-detection → weightslab-1.3.3/weightslab/examples/PyTorch/wl-detection}/config.yaml +0 -0
- {weightslab-1.3.1/weightslab/examples/PyTorch/ws-detection → weightslab-1.3.3/weightslab/examples/PyTorch/wl-detection}/utils/criterions.py +0 -0
- {weightslab-1.3.1/weightslab/examples/PyTorch/ws-detection → weightslab-1.3.3/weightslab/examples/PyTorch/wl-detection}/utils/data.py +0 -0
- {weightslab-1.3.1/weightslab/examples/PyTorch/ws-detection → weightslab-1.3.3/weightslab/examples/PyTorch/wl-detection}/utils/model.py +0 -0
- {weightslab-1.3.1/weightslab/examples/PyTorch/ws-generation → weightslab-1.3.3/weightslab/examples/PyTorch/wl-generation}/config.yaml +0 -0
- {weightslab-1.3.1/weightslab/examples/PyTorch/ws-generation → weightslab-1.3.3/weightslab/examples/PyTorch/wl-generation}/main.py +0 -0
- {weightslab-1.3.1/weightslab/examples/PyTorch/ws-segmentation → weightslab-1.3.3/weightslab/examples/PyTorch/wl-segmentation}/BDD_subset/images/train/0000f77c-6257be58.jpg +0 -0
- {weightslab-1.3.1/weightslab/examples/PyTorch/ws-segmentation → weightslab-1.3.3/weightslab/examples/PyTorch/wl-segmentation}/BDD_subset/images/train/000f8d37-d4c09a0f.jpg +0 -0
- {weightslab-1.3.1/weightslab/examples/PyTorch/ws-segmentation → weightslab-1.3.3/weightslab/examples/PyTorch/wl-segmentation}/BDD_subset/images/train/00a0f008-a315437f.jpg +0 -0
- {weightslab-1.3.1/weightslab/examples/PyTorch/ws-segmentation → weightslab-1.3.3/weightslab/examples/PyTorch/wl-segmentation}/BDD_subset/images/train/00c12bd0-bb46e479.jpg +0 -0
- {weightslab-1.3.1/weightslab/examples/PyTorch/ws-segmentation → weightslab-1.3.3/weightslab/examples/PyTorch/wl-segmentation}/BDD_subset/images/train/00c29c52-f9524f1e.jpg +0 -0
- {weightslab-1.3.1/weightslab/examples/PyTorch/ws-segmentation → weightslab-1.3.3/weightslab/examples/PyTorch/wl-segmentation}/BDD_subset/images/train/00ce6f6d-50bbee62.jpg +0 -0
- {weightslab-1.3.1/weightslab/examples/PyTorch/ws-segmentation → weightslab-1.3.3/weightslab/examples/PyTorch/wl-segmentation}/BDD_subset/images/train/00d1bafa-1b47b41c.jpg +0 -0
- {weightslab-1.3.1/weightslab/examples/PyTorch/ws-segmentation → weightslab-1.3.3/weightslab/examples/PyTorch/wl-segmentation}/BDD_subset/images/train/00d7268f-fd4487be.jpg +0 -0
- {weightslab-1.3.1/weightslab/examples/PyTorch/ws-segmentation → weightslab-1.3.3/weightslab/examples/PyTorch/wl-segmentation}/BDD_subset/images/train/00f0dd0f-5e9c9557.jpg +0 -0
- {weightslab-1.3.1/weightslab/examples/PyTorch/ws-segmentation → weightslab-1.3.3/weightslab/examples/PyTorch/wl-segmentation}/BDD_subset/images/train/0a0d7f4c-ac5c3c8f.jpg +0 -0
- {weightslab-1.3.1/weightslab/examples/PyTorch/ws-segmentation → weightslab-1.3.3/weightslab/examples/PyTorch/wl-segmentation}/BDD_subset/images/train/0a1f4fce-f9cac880.jpg +0 -0
- {weightslab-1.3.1/weightslab/examples/PyTorch/ws-segmentation → weightslab-1.3.3/weightslab/examples/PyTorch/wl-segmentation}/BDD_subset/images/train/0a3bb2d8-c195d91e.jpg +0 -0
- {weightslab-1.3.1/weightslab/examples/PyTorch/ws-segmentation → weightslab-1.3.3/weightslab/examples/PyTorch/wl-segmentation}/BDD_subset/images/val/b1cac6a7-04e33135.jpg +0 -0
- {weightslab-1.3.1/weightslab/examples/PyTorch/ws-segmentation → weightslab-1.3.3/weightslab/examples/PyTorch/wl-segmentation}/BDD_subset/images/val/b1ceb32e-3f481b43.jpg +0 -0
- {weightslab-1.3.1/weightslab/examples/PyTorch/ws-segmentation → weightslab-1.3.3/weightslab/examples/PyTorch/wl-segmentation}/BDD_subset/images/val/b1d10d08-5b108225.jpg +0 -0
- {weightslab-1.3.1/weightslab/examples/PyTorch/ws-segmentation → weightslab-1.3.3/weightslab/examples/PyTorch/wl-segmentation}/BDD_subset/images/val/b1d22449-15fb948f.jpg +0 -0
- {weightslab-1.3.1/weightslab/examples/PyTorch/ws-segmentation → weightslab-1.3.3/weightslab/examples/PyTorch/wl-segmentation}/BDD_subset/images/val/b1d7b3ac-5af8623b.jpg +0 -0
- {weightslab-1.3.1/weightslab/examples/PyTorch/ws-segmentation → weightslab-1.3.3/weightslab/examples/PyTorch/wl-segmentation}/BDD_subset/images/val/b1dce572-c6a8cb5e.jpg +0 -0
- {weightslab-1.3.1/weightslab/examples/PyTorch/ws-segmentation → weightslab-1.3.3/weightslab/examples/PyTorch/wl-segmentation}/BDD_subset/images/val/b1e1a7b8-0aec80e8.jpg +0 -0
- {weightslab-1.3.1/weightslab/examples/PyTorch/ws-segmentation → weightslab-1.3.3/weightslab/examples/PyTorch/wl-segmentation}/BDD_subset/images/val/b1e8ad72-c3c79240.jpg +0 -0
- {weightslab-1.3.1/weightslab/examples/PyTorch/ws-segmentation → weightslab-1.3.3/weightslab/examples/PyTorch/wl-segmentation}/BDD_subset/images/val/b1ee702d-0ae1fc10.jpg +0 -0
- {weightslab-1.3.1/weightslab/examples/PyTorch/ws-segmentation → weightslab-1.3.3/weightslab/examples/PyTorch/wl-segmentation}/BDD_subset/images/val/b1f0efd9-37a14dda.jpg +0 -0
- {weightslab-1.3.1/weightslab/examples/PyTorch/ws-segmentation → weightslab-1.3.3/weightslab/examples/PyTorch/wl-segmentation}/BDD_subset/images/val/b2a0648b-d8e126bc.jpg +0 -0
- {weightslab-1.3.1/weightslab/examples/PyTorch/ws-segmentation → weightslab-1.3.3/weightslab/examples/PyTorch/wl-segmentation}/BDD_subset/images/val/b2b70230-bad4ff6e.jpg +0 -0
- {weightslab-1.3.1/weightslab/examples/PyTorch/ws-segmentation → weightslab-1.3.3/weightslab/examples/PyTorch/wl-segmentation}/BDD_subset/labels/train/0000f77c-6257be58.png +0 -0
- {weightslab-1.3.1/weightslab/examples/PyTorch/ws-segmentation → weightslab-1.3.3/weightslab/examples/PyTorch/wl-segmentation}/BDD_subset/labels/train/000f8d37-d4c09a0f.png +0 -0
- {weightslab-1.3.1/weightslab/examples/PyTorch/ws-segmentation → weightslab-1.3.3/weightslab/examples/PyTorch/wl-segmentation}/BDD_subset/labels/train/00a0f008-a315437f.png +0 -0
- {weightslab-1.3.1/weightslab/examples/PyTorch/ws-segmentation → weightslab-1.3.3/weightslab/examples/PyTorch/wl-segmentation}/BDD_subset/labels/train/00c12bd0-bb46e479.png +0 -0
- {weightslab-1.3.1/weightslab/examples/PyTorch/ws-segmentation → weightslab-1.3.3/weightslab/examples/PyTorch/wl-segmentation}/BDD_subset/labels/train/00c29c52-f9524f1e.png +0 -0
- {weightslab-1.3.1/weightslab/examples/PyTorch/ws-segmentation → weightslab-1.3.3/weightslab/examples/PyTorch/wl-segmentation}/BDD_subset/labels/train/00ce6f6d-50bbee62.png +0 -0
- {weightslab-1.3.1/weightslab/examples/PyTorch/ws-segmentation → weightslab-1.3.3/weightslab/examples/PyTorch/wl-segmentation}/BDD_subset/labels/train/00d1bafa-1b47b41c.png +0 -0
- {weightslab-1.3.1/weightslab/examples/PyTorch/ws-segmentation → weightslab-1.3.3/weightslab/examples/PyTorch/wl-segmentation}/BDD_subset/labels/train/00d7268f-fd4487be.png +0 -0
- {weightslab-1.3.1/weightslab/examples/PyTorch/ws-segmentation → weightslab-1.3.3/weightslab/examples/PyTorch/wl-segmentation}/BDD_subset/labels/train/00f0dd0f-5e9c9557.png +0 -0
- {weightslab-1.3.1/weightslab/examples/PyTorch/ws-segmentation → weightslab-1.3.3/weightslab/examples/PyTorch/wl-segmentation}/BDD_subset/labels/train/0a0d7f4c-ac5c3c8f.png +0 -0
- {weightslab-1.3.1/weightslab/examples/PyTorch/ws-segmentation → weightslab-1.3.3/weightslab/examples/PyTorch/wl-segmentation}/BDD_subset/labels/train/0a1f4fce-f9cac880.png +0 -0
- {weightslab-1.3.1/weightslab/examples/PyTorch/ws-segmentation → weightslab-1.3.3/weightslab/examples/PyTorch/wl-segmentation}/BDD_subset/labels/train/0a3bb2d8-c195d91e.png +0 -0
- {weightslab-1.3.1/weightslab/examples/PyTorch/ws-segmentation → weightslab-1.3.3/weightslab/examples/PyTorch/wl-segmentation}/BDD_subset/labels/val/b1cac6a7-04e33135.png +0 -0
- {weightslab-1.3.1/weightslab/examples/PyTorch/ws-segmentation → weightslab-1.3.3/weightslab/examples/PyTorch/wl-segmentation}/BDD_subset/labels/val/b1ceb32e-3f481b43.png +0 -0
- {weightslab-1.3.1/weightslab/examples/PyTorch/ws-segmentation → weightslab-1.3.3/weightslab/examples/PyTorch/wl-segmentation}/BDD_subset/labels/val/b1d10d08-5b108225.png +0 -0
- {weightslab-1.3.1/weightslab/examples/PyTorch/ws-segmentation → weightslab-1.3.3/weightslab/examples/PyTorch/wl-segmentation}/BDD_subset/labels/val/b1d22449-15fb948f.png +0 -0
- {weightslab-1.3.1/weightslab/examples/PyTorch/ws-segmentation → weightslab-1.3.3/weightslab/examples/PyTorch/wl-segmentation}/BDD_subset/labels/val/b1d7b3ac-5af8623b.png +0 -0
- {weightslab-1.3.1/weightslab/examples/PyTorch/ws-segmentation → weightslab-1.3.3/weightslab/examples/PyTorch/wl-segmentation}/BDD_subset/labels/val/b1dce572-c6a8cb5e.png +0 -0
- {weightslab-1.3.1/weightslab/examples/PyTorch/ws-segmentation → weightslab-1.3.3/weightslab/examples/PyTorch/wl-segmentation}/BDD_subset/labels/val/b1e1a7b8-0aec80e8.png +0 -0
- {weightslab-1.3.1/weightslab/examples/PyTorch/ws-segmentation → weightslab-1.3.3/weightslab/examples/PyTorch/wl-segmentation}/BDD_subset/labels/val/b1e8ad72-c3c79240.png +0 -0
- {weightslab-1.3.1/weightslab/examples/PyTorch/ws-segmentation → weightslab-1.3.3/weightslab/examples/PyTorch/wl-segmentation}/BDD_subset/labels/val/b1ee702d-0ae1fc10.png +0 -0
- {weightslab-1.3.1/weightslab/examples/PyTorch/ws-segmentation → weightslab-1.3.3/weightslab/examples/PyTorch/wl-segmentation}/BDD_subset/labels/val/b1f0efd9-37a14dda.png +0 -0
- {weightslab-1.3.1/weightslab/examples/PyTorch/ws-segmentation → weightslab-1.3.3/weightslab/examples/PyTorch/wl-segmentation}/BDD_subset/labels/val/b2a0648b-d8e126bc.png +0 -0
- {weightslab-1.3.1/weightslab/examples/PyTorch/ws-segmentation → weightslab-1.3.3/weightslab/examples/PyTorch/wl-segmentation}/BDD_subset/labels/val/b2b70230-bad4ff6e.png +0 -0
- {weightslab-1.3.1/weightslab/examples/PyTorch/ws-segmentation → weightslab-1.3.3/weightslab/examples/PyTorch/wl-segmentation}/config.yaml +0 -0
- {weightslab-1.3.1/weightslab/examples/PyTorch/ws-segmentation → weightslab-1.3.3/weightslab/examples/PyTorch/wl-segmentation}/main.py +0 -0
- {weightslab-1.3.1/weightslab/examples/PyTorch/ws-segmentation → weightslab-1.3.3/weightslab/examples/PyTorch/wl-segmentation}/utils/criterions.py +0 -0
- {weightslab-1.3.1/weightslab/examples/PyTorch/ws-segmentation → weightslab-1.3.3/weightslab/examples/PyTorch/wl-segmentation}/utils/data.py +0 -0
- {weightslab-1.3.1/weightslab/examples/PyTorch/ws-segmentation → weightslab-1.3.3/weightslab/examples/PyTorch/wl-segmentation}/utils/model.py +0 -0
- {weightslab-1.3.1/weightslab/examples/Ultralytics/ws-detection → weightslab-1.3.3/weightslab/examples/Ultralytics/wl-detection}/config.yaml +0 -0
- {weightslab-1.3.1/weightslab/examples/Ultralytics/ws-detection → weightslab-1.3.3/weightslab/examples/Ultralytics/wl-detection}/main.py +0 -0
- {weightslab-1.3.1/weightslab/examples/Usecases/ws-2d-lidar-detection → weightslab-1.3.3/weightslab/examples/Usecases/wl-2d-lidar-detection}/config.yaml +0 -0
- {weightslab-1.3.1/weightslab/examples/Usecases/ws-2d-lidar-detection → weightslab-1.3.3/weightslab/examples/Usecases/wl-2d-lidar-detection}/main.py +0 -0
- {weightslab-1.3.1/weightslab/examples/Usecases/ws-2d-lidar-detection → weightslab-1.3.3/weightslab/examples/Usecases/wl-2d-lidar-detection}/utils/criterions.py +0 -0
- {weightslab-1.3.1/weightslab/examples/Usecases/ws-2d-lidar-detection → weightslab-1.3.3/weightslab/examples/Usecases/wl-2d-lidar-detection}/utils/data.py +0 -0
- {weightslab-1.3.1/weightslab/examples/Usecases/ws-2d-lidar-detection → weightslab-1.3.3/weightslab/examples/Usecases/wl-2d-lidar-detection}/utils/model.py +0 -0
- {weightslab-1.3.1/weightslab/examples/Usecases/ws-3d-lidar-detection → weightslab-1.3.3/weightslab/examples/Usecases/wl-3d-lidar-detection}/config.yaml +0 -0
- {weightslab-1.3.1/weightslab/examples/Usecases/ws-3d-lidar-detection → weightslab-1.3.3/weightslab/examples/Usecases/wl-3d-lidar-detection}/main.py +0 -0
- {weightslab-1.3.1/weightslab/examples/Usecases/ws-3d-lidar-detection → weightslab-1.3.3/weightslab/examples/Usecases/wl-3d-lidar-detection}/utils/criterions.py +0 -0
- {weightslab-1.3.1/weightslab/examples/Usecases/ws-3d-lidar-detection → weightslab-1.3.3/weightslab/examples/Usecases/wl-3d-lidar-detection}/utils/data.py +0 -0
- {weightslab-1.3.1/weightslab/examples/Usecases/ws-3d-lidar-detection → weightslab-1.3.3/weightslab/examples/Usecases/wl-3d-lidar-detection}/utils/kitti_download.py +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/weightslab/examples/__init__.py +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/weightslab/examples/utils/__init__.py +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/weightslab/examples/utils/baseline_models/__init__.py +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/weightslab/examples/utils/baseline_models/pytorch/__init__.py +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/weightslab/examples/utils/baseline_models/pytorch/models.py +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/weightslab/integrations/__init__.py +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/weightslab/integrations/ultralytics/README.md +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/weightslab/integrations/ultralytics/__init__.py +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/weightslab/integrations/ultralytics/_utils.py +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/weightslab/integrations/ultralytics/collate.py +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/weightslab/integrations/ultralytics/dataset.py +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/weightslab/integrations/ultralytics/signals.py +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/weightslab/integrations/ultralytics/trainer.py +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/weightslab/models/__init__.py +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/weightslab/models/model_with_ops.py +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/weightslab/models/monkey_patcher.py +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/weightslab/modules/__init__.py +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/weightslab/modules/modules_with_ops.py +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/weightslab/modules/neuron_ops.py +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/weightslab/proto/__init__.py +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/weightslab/proto/experiment_service_pb2_grpc.py +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/weightslab/security/__init__.py +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/weightslab/security/cert_auth_manager.py +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/weightslab/trainer/__init__.py +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/weightslab/trainer/experiment_context.py +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/weightslab/trainer/services/__init__.py +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/weightslab/trainer/services/agent/__init__.py +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/weightslab/trainer/services/agent/agent.py +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/weightslab/trainer/services/agent/agent_overview/agent.png +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/weightslab/trainer/services/agent/agent_overview/query_example.png +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/weightslab/trainer/services/agent/agent_overview/schema.png +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/weightslab/trainer/services/agent_service.py +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/weightslab/trainer/services/data_image_utils.py +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/weightslab/trainer/services/instance_merger.py +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/weightslab/trainer/services/model_service.py +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/weightslab/trainer/services/utils/__init__.py +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/weightslab/trainer/services/utils/tools.py +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/weightslab/trainer/trainer_tools.py +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/weightslab/utils/__init__.py +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/weightslab/utils/computational_graph.py +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/weightslab/utils/logs.py +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/weightslab/utils/modules_dependencies.py +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/weightslab/utils/plot_graph.py +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/weightslab/utils/shape_prop.py +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/weightslab/utils/telemetry.py +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/weightslab/utils/tools.py +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/weightslab/watchdog/__init__.py +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/weightslab/watchdog/grpc_watchdog.py +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/weightslab/watchdog/lock_monitor.py +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/weightslab/watchdog/log_level.py +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/weightslab/watchdog/watchdog.py +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/weightslab.egg-info/dependency_links.txt +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/weightslab.egg-info/entry_points.txt +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/weightslab.egg-info/requires.txt +0 -0
- {weightslab-1.3.1 → weightslab-1.3.3}/weightslab.egg-info/top_level.txt +0 -0
|
Binary file
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# Changelog - 2026-07-10 v1.3.3
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: weightslab
|
|
3
|
-
Version: 1.3.
|
|
3
|
+
Version: 1.3.3
|
|
4
4
|
Summary: Paving the way between black-box and white-box modeling.
|
|
5
5
|
Author-email: Alexandru-Andrei Rotaru <alexandru@graybx.com>, Guillaue Pelluet <guillaue@graybx.com>
|
|
6
6
|
License: BSD 2-clause
|
|
@@ -76,12 +76,14 @@ Dynamic: license-file
|
|
|
76
76
|
<a href="https://github.com/GrayboxTech/weightslab/blob/main/LICENSE"><img src="https://img.shields.io/badge/License-Apache%202.0-blue.svg" alt="License" /></a>
|
|
77
77
|
<a href="https://github.com/GrayboxTech/weightslab/stargazers"><img src="https://img.shields.io/github/stars/GrayboxTech/weightslab?style=flat&color=5865F2" alt="Stars" /></a>
|
|
78
78
|
<a href="https://pypi.org/project/weightslab/"><img src="https://img.shields.io/pypi/v/weightslab?style=flat&color=5865F2&logo=pypi&logoColor=white" alt="Version" /></a>
|
|
79
|
+
<a href="https://pepy.tech/project/weightslab"><img src="https://img.shields.io/pepy/dt/weightslab?style=flat&color=5865F2&logo=pypi&logoColor=white" alt="PyPI - Downloads" /></a>
|
|
80
|
+
<a href="https://github.com/GrayboxTech/weightslab/actions"><img src="https://img.shields.io/badge/CI-passing-brightgreen?style=flat&logo=githubactions&logoColor=white" alt="CI" /></a>
|
|
79
81
|
</div>
|
|
80
82
|
<br>
|
|
81
83
|
|
|
82
84
|
## What it does
|
|
83
85
|
|
|
84
|
-
WeightsLab is an open-source PyTorch tool for dataset debugging, data quality monitoring, mislabel detection, and mid-training data curation for computer vision datasets: images, video & LiDAR point clouds.
|
|
86
|
+
WeightsLab is an open-source PyTorch tool for dataset debugging, data quality monitoring, mislabel detection, and mid-training data curation for computer vision datasets: images, video & LiDAR point clouds.
|
|
85
87
|
Longer-term, we're building toward bringing dataset management, training, fine-tuning, and validation together in a single, unified workflow.
|
|
86
88
|
|
|
87
89
|
<br>
|
|
@@ -92,18 +94,18 @@ Longer-term, we're building toward bringing dataset management, training, fine-t
|
|
|
92
94
|
<br>
|
|
93
95
|
Most data problems are invisible until your model tells you: through loss spikes, poor generalization, or silent underperformance. WeightsLab connects those training signals back to the exact samples causing them.
|
|
94
96
|
|
|
95
|
-
**Wrap your training script with the SDK** to capture per-sample signals live.
|
|
97
|
+
**Wrap your training script with the SDK** to capture per-sample signals live.
|
|
96
98
|
**Open Studio** to inspect, filter, and curate your dataset mid-training, without restarting.
|
|
97
99
|
|
|
98
|
-
- **Detect** - Surface mislabels, outliers & class imbalance using live loss signals
|
|
99
|
-
- **Curate** - Discard bad samples, create data subsets, rebalance distributions
|
|
100
|
-
- **Continue** - Resume training on your cleaned dataset, no restart required
|
|
100
|
+
- **Detect** - Surface mislabels, outliers & class imbalance using live loss signals
|
|
101
|
+
- **Curate** - Discard bad samples, create data subsets, rebalance distributions
|
|
102
|
+
- **Continue** - Resume training on your cleaned dataset, no restart required
|
|
101
103
|
<br>
|
|
102
104
|
|
|
103
|
-
## Quickstart
|
|
105
|
+
## Quickstart
|
|
104
106
|
|
|
105
|
-

|
|
108
|
+

|
|
107
109
|
|
|
108
110
|
**1. Install**
|
|
109
111
|
```bash
|
|
@@ -162,13 +164,13 @@ For a detailed installation guide and advanced configuration → [Installatio
|
|
|
162
164
|
parameters = wl.watch_or_edit(parameters, flag='hp', ...) # ← WeightsLab monitors your parameters and lets you update them from the UI
|
|
163
165
|
model = wl.watch_or_edit(model, flag='model', ...) # ← WeightsLab monitors your model state
|
|
164
166
|
optimizer = wl.watch_or_edit(optim.Adam(...), flag='opt', ...) # ← Tracks optimizer state and lets you update the learning rate from the UI
|
|
165
|
-
|
|
167
|
+
|
|
166
168
|
train_criterion = wl.watch_or_edit(nn.CrossEntropyLoss(reduction="none"), flag='signal', name="train_loss/sample", per_sample=True, log=True) # ← Wrap and plot your signals on the UI
|
|
167
169
|
test_criterion = wl.watch_or_edit(nn.CrossEntropyLoss(reduction="none"), flag='signal', name="test_loss/sample", per_sample=True, log=False) # ← Per-sample only, plot disabled
|
|
168
|
-
|
|
170
|
+
|
|
169
171
|
train_loader = wl.watch_or_edit(train_dataset, flag='data', loader_name="train_loader", ...) # ← Track your training dataset
|
|
170
172
|
val_loader = wl.watch_or_edit(val_dataset, flag='data', loader_name="val_loader", ...) # ← Track your validation dataset
|
|
171
|
-
|
|
173
|
+
|
|
172
174
|
```
|
|
173
175
|
|
|
174
176
|
3. **Run your script, then launch the UI in a separate terminal:**
|
|
@@ -271,7 +273,7 @@ if __name__ == "__main__":
|
|
|
271
273
|
|
|
272
274
|
## WeightsLab vs Weights & Biases
|
|
273
275
|
|
|
274
|
-
Weights & Biases (wandb) tracks experiments. WeightsLab connects training signals back to
|
|
276
|
+
Weights & Biases (wandb) tracks experiments. WeightsLab connects training signals back to
|
|
275
277
|
the exact samples causing them — so you can fix your data, not just log it.
|
|
276
278
|
|
|
277
279
|
<br>
|
|
@@ -384,7 +386,7 @@ any single file. It's the fastest way to orient before a first change.
|
|
|
384
386
|
|
|
385
387
|
<br>
|
|
386
388
|
|
|
387
|
-
We're building a community of ML engineers around data-centric training tooling.
|
|
389
|
+
We're building a community of ML engineers around data-centric training tooling.
|
|
388
390
|
Interested in contributing or just want to say hi? → hello [at] graybx [dot] com
|
|
389
391
|
|
|
390
392
|
</details>
|
|
@@ -17,12 +17,14 @@
|
|
|
17
17
|
<a href="https://github.com/GrayboxTech/weightslab/blob/main/LICENSE"><img src="https://img.shields.io/badge/License-Apache%202.0-blue.svg" alt="License" /></a>
|
|
18
18
|
<a href="https://github.com/GrayboxTech/weightslab/stargazers"><img src="https://img.shields.io/github/stars/GrayboxTech/weightslab?style=flat&color=5865F2" alt="Stars" /></a>
|
|
19
19
|
<a href="https://pypi.org/project/weightslab/"><img src="https://img.shields.io/pypi/v/weightslab?style=flat&color=5865F2&logo=pypi&logoColor=white" alt="Version" /></a>
|
|
20
|
+
<a href="https://pepy.tech/project/weightslab"><img src="https://img.shields.io/pepy/dt/weightslab?style=flat&color=5865F2&logo=pypi&logoColor=white" alt="PyPI - Downloads" /></a>
|
|
21
|
+
<a href="https://github.com/GrayboxTech/weightslab/actions"><img src="https://img.shields.io/badge/CI-passing-brightgreen?style=flat&logo=githubactions&logoColor=white" alt="CI" /></a>
|
|
20
22
|
</div>
|
|
21
23
|
<br>
|
|
22
24
|
|
|
23
25
|
## What it does
|
|
24
26
|
|
|
25
|
-
WeightsLab is an open-source PyTorch tool for dataset debugging, data quality monitoring, mislabel detection, and mid-training data curation for computer vision datasets: images, video & LiDAR point clouds.
|
|
27
|
+
WeightsLab is an open-source PyTorch tool for dataset debugging, data quality monitoring, mislabel detection, and mid-training data curation for computer vision datasets: images, video & LiDAR point clouds.
|
|
26
28
|
Longer-term, we're building toward bringing dataset management, training, fine-tuning, and validation together in a single, unified workflow.
|
|
27
29
|
|
|
28
30
|
<br>
|
|
@@ -33,18 +35,18 @@ Longer-term, we're building toward bringing dataset management, training, fine-t
|
|
|
33
35
|
<br>
|
|
34
36
|
Most data problems are invisible until your model tells you: through loss spikes, poor generalization, or silent underperformance. WeightsLab connects those training signals back to the exact samples causing them.
|
|
35
37
|
|
|
36
|
-
**Wrap your training script with the SDK** to capture per-sample signals live.
|
|
38
|
+
**Wrap your training script with the SDK** to capture per-sample signals live.
|
|
37
39
|
**Open Studio** to inspect, filter, and curate your dataset mid-training, without restarting.
|
|
38
40
|
|
|
39
|
-
- **Detect** - Surface mislabels, outliers & class imbalance using live loss signals
|
|
40
|
-
- **Curate** - Discard bad samples, create data subsets, rebalance distributions
|
|
41
|
-
- **Continue** - Resume training on your cleaned dataset, no restart required
|
|
41
|
+
- **Detect** - Surface mislabels, outliers & class imbalance using live loss signals
|
|
42
|
+
- **Curate** - Discard bad samples, create data subsets, rebalance distributions
|
|
43
|
+
- **Continue** - Resume training on your cleaned dataset, no restart required
|
|
42
44
|
<br>
|
|
43
45
|
|
|
44
|
-
## Quickstart
|
|
46
|
+
## Quickstart
|
|
45
47
|
|
|
46
|
-

|
|
49
|
+

|
|
48
50
|
|
|
49
51
|
**1. Install**
|
|
50
52
|
```bash
|
|
@@ -103,13 +105,13 @@ For a detailed installation guide and advanced configuration → [Installatio
|
|
|
103
105
|
parameters = wl.watch_or_edit(parameters, flag='hp', ...) # ← WeightsLab monitors your parameters and lets you update them from the UI
|
|
104
106
|
model = wl.watch_or_edit(model, flag='model', ...) # ← WeightsLab monitors your model state
|
|
105
107
|
optimizer = wl.watch_or_edit(optim.Adam(...), flag='opt', ...) # ← Tracks optimizer state and lets you update the learning rate from the UI
|
|
106
|
-
|
|
108
|
+
|
|
107
109
|
train_criterion = wl.watch_or_edit(nn.CrossEntropyLoss(reduction="none"), flag='signal', name="train_loss/sample", per_sample=True, log=True) # ← Wrap and plot your signals on the UI
|
|
108
110
|
test_criterion = wl.watch_or_edit(nn.CrossEntropyLoss(reduction="none"), flag='signal', name="test_loss/sample", per_sample=True, log=False) # ← Per-sample only, plot disabled
|
|
109
|
-
|
|
111
|
+
|
|
110
112
|
train_loader = wl.watch_or_edit(train_dataset, flag='data', loader_name="train_loader", ...) # ← Track your training dataset
|
|
111
113
|
val_loader = wl.watch_or_edit(val_dataset, flag='data', loader_name="val_loader", ...) # ← Track your validation dataset
|
|
112
|
-
|
|
114
|
+
|
|
113
115
|
```
|
|
114
116
|
|
|
115
117
|
3. **Run your script, then launch the UI in a separate terminal:**
|
|
@@ -212,7 +214,7 @@ if __name__ == "__main__":
|
|
|
212
214
|
|
|
213
215
|
## WeightsLab vs Weights & Biases
|
|
214
216
|
|
|
215
|
-
Weights & Biases (wandb) tracks experiments. WeightsLab connects training signals back to
|
|
217
|
+
Weights & Biases (wandb) tracks experiments. WeightsLab connects training signals back to
|
|
216
218
|
the exact samples causing them — so you can fix your data, not just log it.
|
|
217
219
|
|
|
218
220
|
<br>
|
|
@@ -325,7 +327,7 @@ any single file. It's the fastest way to orient before a first change.
|
|
|
325
327
|
|
|
326
328
|
<br>
|
|
327
329
|
|
|
328
|
-
We're building a community of ML engineers around data-centric training tooling.
|
|
330
|
+
We're building a community of ML engineers around data-centric training tooling.
|
|
329
331
|
Interested in contributing or just want to say hi? → hello [at] graybx [dot] com
|
|
330
332
|
|
|
331
333
|
</details>
|
|
@@ -277,6 +277,35 @@ body[data-theme="dark"] .wl-only-dark {
|
|
|
277
277
|
margin-bottom: 1rem;
|
|
278
278
|
}
|
|
279
279
|
|
|
280
|
+
.wl-eg-cardwrap {
|
|
281
|
+
position: relative;
|
|
282
|
+
display: flex;
|
|
283
|
+
}
|
|
284
|
+
|
|
285
|
+
.wl-eg-cardwrap > .wl-eg-card {
|
|
286
|
+
flex: 1;
|
|
287
|
+
}
|
|
288
|
+
|
|
289
|
+
/* "Open in Colab" logo, pinned top-right, above the card link. */
|
|
290
|
+
.wl-eg-colab {
|
|
291
|
+
position: absolute;
|
|
292
|
+
right: 0.9rem;
|
|
293
|
+
top: 0.9rem;
|
|
294
|
+
z-index: 2;
|
|
295
|
+
line-height: 0;
|
|
296
|
+
transition: transform 0.12s;
|
|
297
|
+
}
|
|
298
|
+
|
|
299
|
+
.wl-eg-colab:hover {
|
|
300
|
+
transform: scale(1.1);
|
|
301
|
+
}
|
|
302
|
+
|
|
303
|
+
.wl-eg-colab img {
|
|
304
|
+
height: 22px;
|
|
305
|
+
width: 22px;
|
|
306
|
+
display: block;
|
|
307
|
+
}
|
|
308
|
+
|
|
280
309
|
.wl-eg-card {
|
|
281
310
|
display: flex;
|
|
282
311
|
flex-direction: column;
|
|
@@ -10,41 +10,49 @@
|
|
|
10
10
|
];
|
|
11
11
|
|
|
12
12
|
// URLs are root-relative (from the doc root), prefixed with content_root at render time
|
|
13
|
+
// Base for "Open in Colab" links (notebooks live under examples/Notebooks).
|
|
14
|
+
var COLAB = 'https://colab.research.google.com/github/GrayboxTech/weightslab/blob/main/weightslab/examples/Notebooks/';
|
|
15
|
+
|
|
13
16
|
var EXAMPLES = [
|
|
14
17
|
{
|
|
15
18
|
badge: 'PyTorch', color: 'pytorch',
|
|
16
19
|
title: 'Classification — MNIST',
|
|
17
20
|
desc: 'CNN digit classifier on MNIST. Register hyperparameters, monitor per-sample loss, and use the deny-aware sampler to focus on hard examples.',
|
|
18
21
|
tags: ['classification', 'supervised', 'mnist', 'cnn'],
|
|
19
|
-
url: 'examples/pytorch/classification.html'
|
|
22
|
+
url: 'examples/pytorch/classification.html',
|
|
23
|
+
colab: COLAB + 'PyTorch/ws-classification.ipynb'
|
|
20
24
|
},
|
|
21
25
|
{
|
|
22
26
|
badge: 'PyTorch', color: 'pytorch',
|
|
23
27
|
title: 'Segmentation — BDD100k',
|
|
24
28
|
desc: 'Per-pixel semantic segmentation with a UNet. Track per-sample IoU and visualise mask overlays directly in the studio.',
|
|
25
29
|
tags: ['segmentation', 'semantic', 'bdd100k', 'masks', 'dense prediction'],
|
|
26
|
-
url: 'examples/pytorch/segmentation.html'
|
|
30
|
+
url: 'examples/pytorch/segmentation.html',
|
|
31
|
+
colab: COLAB + 'PyTorch/ws-segmentation.ipynb'
|
|
27
32
|
},
|
|
28
33
|
{
|
|
29
34
|
badge: 'PyTorch', color: 'pytorch',
|
|
30
35
|
title: 'Detection — Penn-Fudan',
|
|
31
36
|
desc: 'Bounding-box detection on Penn-Fudan pedestrians. Per-instance multi-index dataframe with (sample_id, annotation_id) keys.',
|
|
32
37
|
tags: ['detection', 'object detection', 'bounding boxes', 'penn-fudan'],
|
|
33
|
-
url: 'examples/pytorch/detection.html'
|
|
38
|
+
url: 'examples/pytorch/detection.html',
|
|
39
|
+
colab: COLAB + 'PyTorch/ws-detection.ipynb'
|
|
34
40
|
},
|
|
35
41
|
{
|
|
36
42
|
badge: 'PyTorch', color: 'pytorch',
|
|
37
43
|
title: 'Clustering — Face Recognition',
|
|
38
44
|
desc: 'Metric learning with triplet loss on face datasets. Store and explore high-dimensional embeddings per sample in the studio.',
|
|
39
45
|
tags: ['clustering', 'unsupervised', 'embeddings', 'face recognition', 'metric learning'],
|
|
40
|
-
url: 'examples/pytorch/clustering.html'
|
|
46
|
+
url: 'examples/pytorch/clustering.html',
|
|
47
|
+
colab: COLAB + 'PyTorch/ws-clustering.ipynb'
|
|
41
48
|
},
|
|
42
49
|
{
|
|
43
50
|
badge: 'PyTorch', color: 'pytorch',
|
|
44
51
|
title: 'Generation / Anomaly Detection',
|
|
45
52
|
desc: 'Unsupervised anomaly detection on MVTec with a multi-task UNet. Monitor reconstruction quality and per-sample anomaly scores.',
|
|
46
53
|
tags: ['anomaly detection', 'generation', 'unsupervised', 'mvtec', 'reconstruction'],
|
|
47
|
-
url: 'examples/pytorch/generation.html'
|
|
54
|
+
url: 'examples/pytorch/generation.html',
|
|
55
|
+
colab: COLAB + 'PyTorch/ws-generation.ipynb'
|
|
48
56
|
},
|
|
49
57
|
{
|
|
50
58
|
badge: 'Lightning', color: 'lightning',
|
|
@@ -72,7 +80,8 @@
|
|
|
72
80
|
title: 'Loss-Shape Classification',
|
|
73
81
|
desc: 'Dynamic subscribed signal that classifies each sample\'s loss trajectory (monotonic, U-shape, spiked, …) and auto-tags it.',
|
|
74
82
|
tags: ['loss analysis', 'signal', 'categorical tag', 'per-sample', 'trajectory'],
|
|
75
|
-
url: 'examples/usecases/loss_shape_classification.html'
|
|
83
|
+
url: 'examples/usecases/loss_shape_classification.html',
|
|
84
|
+
colab: COLAB + 'Usecases/ws-segmentation-loss-shapes.ipynb'
|
|
76
85
|
}
|
|
77
86
|
];
|
|
78
87
|
|
|
@@ -94,15 +103,25 @@
|
|
|
94
103
|
}).join('');
|
|
95
104
|
var search = (ex.title + ' ' + ex.tags.join(' ')).toLowerCase();
|
|
96
105
|
var href = baseUrl + '/' + ex.url;
|
|
106
|
+
// "Open in Colab" badge, bottom-right, as a sibling of the card link (an
|
|
107
|
+
// <a> cannot be nested inside another <a>). Only for examples with a notebook.
|
|
108
|
+
var colabHtml = ex.colab
|
|
109
|
+
? '<a class="wl-eg-colab" href="' + esc(ex.colab) + '" target="_blank" rel="noopener noreferrer" title="Open in Google Colab" aria-label="Open in Google Colab">' +
|
|
110
|
+
'<img src="https://colab.research.google.com/img/colab_favicon_256px.png" alt="Open in Colab">' +
|
|
111
|
+
'</a>'
|
|
112
|
+
: '';
|
|
113
|
+
// The wrapper carries the filter data so the whole card (badge included)
|
|
114
|
+
// shows/hides together.
|
|
97
115
|
return (
|
|
98
|
-
'<
|
|
99
|
-
'
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
'
|
|
105
|
-
|
|
116
|
+
'<div class="wl-eg-cardwrap" data-search="' + esc(search) + '" data-color="' + esc(ex.color) + '">' +
|
|
117
|
+
'<a class="wl-eg-card" href="' + esc(href) + '">' +
|
|
118
|
+
'<span class="wl-eg-badge wl-eg-badge--' + ex.color + '">' + esc(ex.badge) + '</span>' +
|
|
119
|
+
'<p class="wl-eg-title">' + esc(ex.title) + '</p>' +
|
|
120
|
+
'<p class="wl-eg-desc">' + esc(ex.desc) + '</p>' +
|
|
121
|
+
'<div class="wl-eg-tags">' + tagsHtml + '</div>' +
|
|
122
|
+
'</a>' +
|
|
123
|
+
colabHtml +
|
|
124
|
+
'</div>'
|
|
106
125
|
);
|
|
107
126
|
}
|
|
108
127
|
|
|
@@ -166,7 +185,7 @@
|
|
|
166
185
|
var totalVisible = 0;
|
|
167
186
|
|
|
168
187
|
document.querySelectorAll('.wl-eg-section').forEach(function (section) {
|
|
169
|
-
var cards = section.querySelectorAll('.wl-eg-
|
|
188
|
+
var cards = section.querySelectorAll('.wl-eg-cardwrap');
|
|
170
189
|
var sectionVisible = 0;
|
|
171
190
|
cards.forEach(function (c) {
|
|
172
191
|
var matchText = !q || c.dataset.search.indexOf(q) !== -1;
|
|
@@ -11,7 +11,7 @@ Classification — MNIST (PyTorch Lightning)
|
|
|
11
11
|
<span class="wl-eg-tag">pytorch lightning</span>
|
|
12
12
|
</div>
|
|
13
13
|
|
|
14
|
-
**Example:** ``weightslab/examples/Lightning/
|
|
14
|
+
**Example:** ``weightslab/examples/Lightning/wl-classification/main.py``
|
|
15
15
|
|
|
16
16
|
**Task:** MNIST digit classification with a CNN, training loop managed by
|
|
17
17
|
``pl.Trainer``.
|
|
@@ -11,7 +11,7 @@ Classification — MNIST (PyTorch)
|
|
|
11
11
|
<span class="wl-eg-tag">cnn</span>
|
|
12
12
|
</div>
|
|
13
13
|
|
|
14
|
-
**Example:** ``weightslab/examples/PyTorch/
|
|
14
|
+
**Example:** ``weightslab/examples/PyTorch/wl-classification/main.py``
|
|
15
15
|
|
|
16
16
|
**Task:** 10-class digit classification on MNIST with a small CNN.
|
|
17
17
|
|
|
@@ -159,3 +159,12 @@ debug values, custom distances, etc.
|
|
|
159
159
|
|
|
160
160
|
weightslab ui launch # 1. deploy the studio
|
|
161
161
|
weightslab start example --cls # 2. start the classification demo
|
|
162
|
+
|
|
163
|
+
|
|
164
|
+
.. raw:: html
|
|
165
|
+
|
|
166
|
+
<div style="text-align:right; margin-top:2rem;">
|
|
167
|
+
<a href="https://colab.research.google.com/github/GrayboxTech/weightslab/blob/main/weightslab/examples/Notebooks/PyTorch/ws-classification.ipynb" target="_blank" rel="noopener noreferrer">
|
|
168
|
+
<img src="https://colab.research.google.com/assets/colab-badge.svg" alt="Open In Colab">
|
|
169
|
+
</a>
|
|
170
|
+
</div>
|
|
@@ -12,7 +12,7 @@ Clustering — Face Recognition (PyTorch)
|
|
|
12
12
|
<span class="wl-eg-tag">metric learning</span>
|
|
13
13
|
</div>
|
|
14
14
|
|
|
15
|
-
**Example:** ``weightslab/examples/PyTorch/
|
|
15
|
+
**Example:** ``weightslab/examples/PyTorch/wl-clustering/main.py``
|
|
16
16
|
|
|
17
17
|
**Task:** Metric learning with triplet loss on the Olivetti / LFW face dataset.
|
|
18
18
|
The goal is to train an embedding network so that embeddings from the same
|
|
@@ -95,3 +95,12 @@ silhouette score to identify consistently confused identities.
|
|
|
95
95
|
|
|
96
96
|
weightslab ui launch # 1. deploy the studio
|
|
97
97
|
weightslab start example --clus # 2. start the clustering demo
|
|
98
|
+
|
|
99
|
+
|
|
100
|
+
.. raw:: html
|
|
101
|
+
|
|
102
|
+
<div style="text-align:right; margin-top:2rem;">
|
|
103
|
+
<a href="https://colab.research.google.com/github/GrayboxTech/weightslab/blob/main/weightslab/examples/Notebooks/PyTorch/ws-clustering.ipynb" target="_blank" rel="noopener noreferrer">
|
|
104
|
+
<img src="https://colab.research.google.com/assets/colab-badge.svg" alt="Open In Colab">
|
|
105
|
+
</a>
|
|
106
|
+
</div>
|
|
@@ -11,7 +11,7 @@ Detection — Penn-Fudan Pedestrians (PyTorch)
|
|
|
11
11
|
<span class="wl-eg-tag">penn-fudan</span>
|
|
12
12
|
</div>
|
|
13
13
|
|
|
14
|
-
**Example:** ``weightslab/examples/PyTorch/
|
|
14
|
+
**Example:** ``weightslab/examples/PyTorch/wl-detection/main.py``
|
|
15
15
|
|
|
16
16
|
**Task:** Bounding-box detection on the Penn-Fudan pedestrian dataset with a
|
|
17
17
|
small ResNet-backbone detector.
|
|
@@ -127,3 +127,12 @@ pipeline. See :ref:`good-practice-get-items` for the recommended signature.
|
|
|
127
127
|
|
|
128
128
|
weightslab ui launch # 1. deploy the studio
|
|
129
129
|
weightslab start example --det # 2. start the detection demo
|
|
130
|
+
|
|
131
|
+
|
|
132
|
+
.. raw:: html
|
|
133
|
+
|
|
134
|
+
<div style="text-align:right; margin-top:2rem;">
|
|
135
|
+
<a href="https://colab.research.google.com/github/GrayboxTech/weightslab/blob/main/weightslab/examples/Notebooks/PyTorch/ws-detection.ipynb" target="_blank" rel="noopener noreferrer">
|
|
136
|
+
<img src="https://colab.research.google.com/assets/colab-badge.svg" alt="Open In Colab">
|
|
137
|
+
</a>
|
|
138
|
+
</div>
|
|
@@ -12,7 +12,7 @@ Generation / Anomaly Detection — MVTec (PyTorch)
|
|
|
12
12
|
<span class="wl-eg-tag">reconstruction</span>
|
|
13
13
|
</div>
|
|
14
14
|
|
|
15
|
-
**Example:** ``weightslab/examples/PyTorch/
|
|
15
|
+
**Example:** ``weightslab/examples/PyTorch/wl-generation/main.py``
|
|
16
16
|
|
|
17
17
|
**Task:** Unsupervised anomaly detection on MVTec capsule images with a
|
|
18
18
|
multi-task UNet (classification head + reconstruction head + contrastive loss).
|
|
@@ -101,3 +101,12 @@ filter by pair distance to find the hardest negatives.
|
|
|
101
101
|
|
|
102
102
|
weightslab ui launch # 1. deploy the studio
|
|
103
103
|
weightslab start example --gen # 2. start the generation / anomaly demo
|
|
104
|
+
|
|
105
|
+
|
|
106
|
+
.. raw:: html
|
|
107
|
+
|
|
108
|
+
<div style="text-align:right; margin-top:2rem;">
|
|
109
|
+
<a href="https://colab.research.google.com/github/GrayboxTech/weightslab/blob/main/weightslab/examples/Notebooks/PyTorch/ws-generation.ipynb" target="_blank" rel="noopener noreferrer">
|
|
110
|
+
<img src="https://colab.research.google.com/assets/colab-badge.svg" alt="Open In Colab">
|
|
111
|
+
</a>
|
|
112
|
+
</div>
|
|
@@ -12,7 +12,7 @@ Segmentation — BDD100k (PyTorch)
|
|
|
12
12
|
<span class="wl-eg-tag">dense prediction</span>
|
|
13
13
|
</div>
|
|
14
14
|
|
|
15
|
-
**Example:** ``weightslab/examples/PyTorch/
|
|
15
|
+
**Example:** ``weightslab/examples/PyTorch/wl-segmentation/main.py``
|
|
16
16
|
|
|
17
17
|
**Task:** Per-instance semantic segmentation on BDD100k (6 classes) with a
|
|
18
18
|
small UNet.
|
|
@@ -114,3 +114,12 @@ these signals over training steps and lets you sort samples by them.
|
|
|
114
114
|
|
|
115
115
|
weightslab ui launch # 1. deploy the studio
|
|
116
116
|
weightslab start example --seg # 2. start the segmentation demo
|
|
117
|
+
|
|
118
|
+
|
|
119
|
+
.. raw:: html
|
|
120
|
+
|
|
121
|
+
<div style="text-align:right; margin-top:2rem;">
|
|
122
|
+
<a href="https://colab.research.google.com/github/GrayboxTech/weightslab/blob/main/weightslab/examples/Notebooks/PyTorch/ws-segmentation.ipynb" target="_blank" rel="noopener noreferrer">
|
|
123
|
+
<img src="https://colab.research.google.com/assets/colab-badge.svg" alt="Open In Colab">
|
|
124
|
+
</a>
|
|
125
|
+
</div>
|
|
@@ -16,7 +16,7 @@ The full Ultralytics integration documentation is at :doc:`/ultralytics`.
|
|
|
16
16
|
This page summarises what ``WLAwareTrainer`` handles automatically and where
|
|
17
17
|
the example lives.
|
|
18
18
|
|
|
19
|
-
**Example:** ``weightslab/examples/Ultralytics/
|
|
19
|
+
**Example:** ``weightslab/examples/Ultralytics/wl-detection/main.py``
|
|
20
20
|
|
|
21
21
|
What the example does
|
|
22
22
|
---------------------
|
|
@@ -14,8 +14,8 @@ LiDAR Detection — 2D and 3D (PyTorch)
|
|
|
14
14
|
|
|
15
15
|
**Examples:**
|
|
16
16
|
|
|
17
|
-
- ``weightslab/examples/Usecases/
|
|
18
|
-
- ``weightslab/examples/Usecases/
|
|
17
|
+
- ``weightslab/examples/Usecases/wl-2d-lidar-detection/main.py``
|
|
18
|
+
- ``weightslab/examples/Usecases/wl-3d-lidar-detection/main.py``
|
|
19
19
|
|
|
20
20
|
**Task:** Object detection on LiDAR point clouds — 2D pillar-grid (BEV) and
|
|
21
21
|
full 3D bounding boxes (KITTI-format).
|
|
@@ -12,7 +12,7 @@ Loss-Shape Classification per Sample
|
|
|
12
12
|
<span class="wl-eg-tag">trajectory</span>
|
|
13
13
|
</div>
|
|
14
14
|
|
|
15
|
-
**Example:** ``weightslab/examples/Usecases/
|
|
15
|
+
**Example:** ``weightslab/examples/Usecases/wl-loss_shapes_classification_per_sample/``
|
|
16
16
|
|
|
17
17
|
This use case builds on :doc:`../pytorch/detection` (same Penn-Fudan dataset,
|
|
18
18
|
same model, same ``guard_training_context`` pattern) and adds one new feature:
|
|
@@ -208,3 +208,12 @@ Workflow in the studio
|
|
|
208
208
|
|
|
209
209
|
To run the full loss-shape example (with the ``@wl.signal(subscribe_to=...)``
|
|
210
210
|
classifier active), use the direct path above.
|
|
211
|
+
|
|
212
|
+
|
|
213
|
+
.. raw:: html
|
|
214
|
+
|
|
215
|
+
<div style="text-align:right; margin-top:2rem;">
|
|
216
|
+
<a href="https://colab.research.google.com/github/GrayboxTech/weightslab/blob/main/weightslab/examples/Notebooks/Usecases/ws-segmentation-loss-shapes.ipynb" target="_blank" rel="noopener noreferrer">
|
|
217
|
+
<img src="https://colab.research.google.com/assets/colab-badge.svg" alt="Open In Colab">
|
|
218
|
+
</a>
|
|
219
|
+
</div>
|
|
@@ -3,7 +3,7 @@ PyTorch Lightning Integration
|
|
|
3
3
|
|
|
4
4
|
Weightslab is compatible with PyTorch Lightning and already includes a full example:
|
|
5
5
|
|
|
6
|
-
``weightslab/examples/PyTorch_Lightning/
|
|
6
|
+
``weightslab/examples/PyTorch_Lightning/wl-classification/main.py``
|
|
7
7
|
|
|
8
8
|
This page explains how to integrate Weightslab in a Lightning workflow and scale to multiple GPUs.
|
|
9
9
|
|
|
@@ -109,7 +109,7 @@ Optional YAML-driven trainer config
|
|
|
109
109
|
|
|
110
110
|
The Lightning example already includes a ready template at:
|
|
111
111
|
|
|
112
|
-
``weightslab/examples/PyTorch_Lightning/
|
|
112
|
+
``weightslab/examples/PyTorch_Lightning/wl-classification/config.yaml``
|
|
113
113
|
|
|
114
114
|
.. code-block:: yaml
|
|
115
115
|
|
|
@@ -3,7 +3,7 @@ Segmentation Use Case — Per-instance & Per-sample Signals (PyTorch)
|
|
|
3
3
|
|
|
4
4
|
This page walks through the segmentation integration from:
|
|
5
5
|
|
|
6
|
-
``weightslab/examples/PyTorch/
|
|
6
|
+
``weightslab/examples/PyTorch/wl-segmentation/main.py``
|
|
7
7
|
|
|
8
8
|
It builds on the classification :doc:`usecases` page and focuses on what is
|
|
9
9
|
**specific to segmentation**: a *list of per-instance masks* per sample, a custom
|
|
@@ -8,7 +8,7 @@ without touching the model or YOLO's training loop.
|
|
|
8
8
|
|
|
9
9
|
The full example lives at:
|
|
10
10
|
|
|
11
|
-
``weightslab/examples/Ultralytics/
|
|
11
|
+
``weightslab/examples/Ultralytics/wl-detection/``
|
|
12
12
|
|
|
13
13
|
How it works
|
|
14
14
|
------------
|
|
@@ -207,7 +207,7 @@ Running the bundled example
|
|
|
207
207
|
|
|
208
208
|
.. code-block:: bash
|
|
209
209
|
|
|
210
|
-
python weightslab/examples/Ultralytics/
|
|
210
|
+
python weightslab/examples/Ultralytics/wl-detection/main.py
|
|
211
211
|
|
|
212
212
|
5. Open ``http://localhost:5173`` to monitor training, inspect per-sample
|
|
213
213
|
signals, tag difficult images, and discard outliers.
|