16031aae96
CPU tests Workflow / Testing (ubuntu-latest, 3.12) (push) Failing after 1s
CPU tests Workflow / Testing (ubuntu-latest, 3.13) (push) Failing after 0s
Mypy Type Check / Type Check (push) Failing after 0s
Docs/Test WorkFlow / Test docs build (push) Failing after 1s
PR Conflict Labeler / labeling (push) Failing after 1s
Dependency resolution / Resolve [tflite] extra — Python 3.12 (push) Failing after 0s
Smoke Tests / try-all-models (ubuntu-latest, 3.10) (push) Failing after 0s
Smoke Tests / try-all-models (ubuntu-latest, 3.13) (push) Failing after 1s
CPU tests Workflow / build-pkg (push) Failing after 1s
CPU tests Workflow / Testing (ubuntu-latest, 3.10) (push) Failing after 0s
CPU tests Workflow / Testing (ubuntu-latest, 3.11) (push) Failing after 0s
Smoke Tests / try-all-models (macos-latest, 3.10) (push) Has been cancelled
Smoke Tests / try-all-models (macos-latest, 3.13) (push) Has been cancelled
Smoke Tests / try-all-models (windows-latest, 3.10) (push) Has been cancelled
Smoke Tests / try-all-models (windows-latest, 3.13) (push) Has been cancelled
CPU tests Workflow / Testing (macos-latest, 3.10) (push) Has been cancelled
CPU tests Workflow / Testing (macos-latest, 3.13) (push) Has been cancelled
CPU tests Workflow / Testing (windows-latest, 3.10) (push) Has been cancelled
CPU tests Workflow / Testing (windows-latest, 3.13) (push) Has been cancelled
CPU tests Workflow / testing-guardian (push) Has been cancelled
GPU tests Workflow / Testing (push) Has been cancelled
30 lines
1.1 KiB
HTML
30 lines
1.1 KiB
HTML
{% extends "main.html" %}
|
|
{% block libs %}
|
|
{{ super() }}
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/dompurify/3.0.8/purify.min.js"></script>
|
|
<link rel="stylesheet" href="{{ 'stylesheets/cookbooks_card.css' | url }}">
|
|
<script src="{{ 'javascripts/cookbooks-card.js' | url }}"></script>
|
|
{% endblock %}
|
|
{% block content %}
|
|
<section class="mdx-container portfolio-section">
|
|
<div class="md-grid md-typeset">
|
|
<div class="text-center">
|
|
<h1>RF-DETR Cookbooks</h1>
|
|
<p class="cookbooks-subtitle">Runnable notebooks for training, fine-tuning, exporting, and deploying RF-DETR models.</p>
|
|
</div>
|
|
<div class="custom-grid">
|
|
{% for card in config.extra.cookbooks_cards %}
|
|
<a href="{{ card.href }}">
|
|
<div class="card repo-card"
|
|
data-name="{{ card.name }}"
|
|
data-labels="{{ card.labels | join(',') }}"
|
|
data-version="{{ card.version }}"
|
|
data-author="{{ card.author }}"
|
|
data-description="{{ card.description }}"></div>
|
|
</a>
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|
|
</section>
|
|
{% endblock %}
|