🌐 AI搜索 & 代理 主页
Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pgml-dashboard/app/views/notebooks.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ def index(request):
request,
"notebooks.html",
{
"notebooks": Notebook.objects.all(),
"notebooks": Notebook.objects.order_by('id').all(),
"topic": "notebooks",
},
)
42 changes: 39 additions & 3 deletions pgml-dashboard/notebooks/fixtures/notebooks.yml
Original file line number Diff line number Diff line change
@@ -1,21 +1,57 @@
- model: notebooks.notebook
pk: 0
fields:
name: 'Tutorial 0: Welcome to PostgresML Notebooks!'
name: "Tutorial 0: \U0001F389 Welcome to PostgresML!"
created_at: 2022-08-20 01:47:08.937190+00:00
updated_at: 2022-08-20 01:47:08.937190+00:00
- model: notebooks.notebook
pk: 1
fields:
name: 'Tutorial 1: Real Time Fraud Detection'
name: 'Tutorial 1: ⏱️ Real Time Fraud Detection'
created_at: 2022-08-15 22:26:18.428227+00:00
updated_at: 2022-08-15 22:26:18.428241+00:00
- model: notebooks.notebook
pk: 2
fields:
name: 'Tutorial 2: Tumor Detection w/ Binary Classification'
name: 'Tutorial 2: ⚕️ Tumor Detection w/ Binary Classification'
created_at: 2022-08-19 23:10:23.120983+00:00
updated_at: 2022-08-19 23:10:23.120996+00:00
- model: notebooks.notebook
pk: 3
fields:
name: "Tutorial 4: \U0001F36D Diabetes Progression w/ Regression"
created_at: 2022-08-20 02:18:14.608456+00:00
updated_at: 2022-08-20 02:18:14.608474+00:00
- model: notebooks.notebook
pk: 4
fields:
name: 'Tutorial 3: ✍️ Handwritten Digit Image Classification'
created_at: 2022-08-20 16:46:40.856497+00:00
updated_at: 2022-08-20 16:46:40.856511+00:00
- model: notebooks.notebook
pk: 5
fields:
name: "Tutorial 5: \U0001F3A4 Language Translation w/ Deep Learning"
created_at: 2022-08-20 16:47:47.830932+00:00
updated_at: 2022-08-20 16:47:47.830946+00:00
- model: notebooks.notebook
pk: 6
fields:
name: 'Tutorial 6: ↗️ Working w/ Embeddings'
created_at: 2022-08-20 16:48:16.252016+00:00
updated_at: 2022-08-20 16:48:16.252029+00:00
- model: notebooks.notebook
pk: 7
fields:
name: "Tutorial 7: \U0001F4D2 Managing Model Deployments"
created_at: 2022-08-20 16:48:40.044312+00:00
updated_at: 2022-08-20 16:48:40.044325+00:00
- model: notebooks.notebook
pk: 8
fields:
name: "Tutorial 8: \U0001F4BB Working the Internal Schema of PostgresML"
created_at: 2022-08-20 16:49:41.363292+00:00
updated_at: 2022-08-20 16:49:41.363306+00:00
- model: notebooks.notebookcell
pk: 1
fields:
Expand Down