├── .gitignore ├── LICENSE ├── README.md └── notebooks ├── DAB_DETR_finetune_on_a_custom_dataset.ipynb ├── DAB_DETR_inference.ipynb ├── DFine_finetune_on_a_custom_dataset.ipynb ├── DFine_inference.ipynb ├── DFine_tracking.ipynb ├── DepthPro_inference.ipynb ├── DistillAnyDepth_inference.ipynb ├── MM_Grounding_DINO_inference.ipynb ├── PromptDepthAnything_inference.ipynb ├── RT_DETR_v2_finetune_on_a_custom_dataset.ipynb ├── RT_DETR_v2_inference.ipynb ├── SigLIP2_inference.ipynb ├── SuperGlue_inference.ipynb └── ViTPose_inference.ipynb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qubvel/transformers-notebooks/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qubvel/transformers-notebooks/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qubvel/transformers-notebooks/HEAD/README.md -------------------------------------------------------------------------------- /notebooks/DAB_DETR_finetune_on_a_custom_dataset.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qubvel/transformers-notebooks/HEAD/notebooks/DAB_DETR_finetune_on_a_custom_dataset.ipynb -------------------------------------------------------------------------------- /notebooks/DAB_DETR_inference.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qubvel/transformers-notebooks/HEAD/notebooks/DAB_DETR_inference.ipynb -------------------------------------------------------------------------------- /notebooks/DFine_finetune_on_a_custom_dataset.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qubvel/transformers-notebooks/HEAD/notebooks/DFine_finetune_on_a_custom_dataset.ipynb -------------------------------------------------------------------------------- /notebooks/DFine_inference.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qubvel/transformers-notebooks/HEAD/notebooks/DFine_inference.ipynb -------------------------------------------------------------------------------- /notebooks/DFine_tracking.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qubvel/transformers-notebooks/HEAD/notebooks/DFine_tracking.ipynb -------------------------------------------------------------------------------- /notebooks/DepthPro_inference.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qubvel/transformers-notebooks/HEAD/notebooks/DepthPro_inference.ipynb -------------------------------------------------------------------------------- /notebooks/DistillAnyDepth_inference.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qubvel/transformers-notebooks/HEAD/notebooks/DistillAnyDepth_inference.ipynb -------------------------------------------------------------------------------- /notebooks/MM_Grounding_DINO_inference.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qubvel/transformers-notebooks/HEAD/notebooks/MM_Grounding_DINO_inference.ipynb -------------------------------------------------------------------------------- /notebooks/PromptDepthAnything_inference.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qubvel/transformers-notebooks/HEAD/notebooks/PromptDepthAnything_inference.ipynb -------------------------------------------------------------------------------- /notebooks/RT_DETR_v2_finetune_on_a_custom_dataset.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qubvel/transformers-notebooks/HEAD/notebooks/RT_DETR_v2_finetune_on_a_custom_dataset.ipynb -------------------------------------------------------------------------------- /notebooks/RT_DETR_v2_inference.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qubvel/transformers-notebooks/HEAD/notebooks/RT_DETR_v2_inference.ipynb -------------------------------------------------------------------------------- /notebooks/SigLIP2_inference.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qubvel/transformers-notebooks/HEAD/notebooks/SigLIP2_inference.ipynb -------------------------------------------------------------------------------- /notebooks/SuperGlue_inference.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qubvel/transformers-notebooks/HEAD/notebooks/SuperGlue_inference.ipynb -------------------------------------------------------------------------------- /notebooks/ViTPose_inference.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qubvel/transformers-notebooks/HEAD/notebooks/ViTPose_inference.ipynb --------------------------------------------------------------------------------