Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Migrate to quarto, blog about LLM temperature experiments #44

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
25 changes: 25 additions & 0 deletions blog/.github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
on:
workflow_dispatch:
push:
branches: main

name: Quarto Publish

jobs:
build-deploy:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Check out repository
uses: actions/checkout@v4

- name: Set up Quarto
uses: quarto-dev/quarto-actions/setup@v2

- name: Render and Publish
uses: quarto-dev/quarto-actions/publish@v2
with:
target: gh-pages
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
15 changes: 15 additions & 0 deletions blog/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
/.quarto/
*.swp
~*
*~
_site
.sass-cache
.jekyll-cache
.jekyll-metadata
vendor
_notebooks/.ipynb_checkpoints
# Local Netlify folder
.netlify
.tweet-cache
__pycache__

Empty file added blog/.nojekyll
Empty file.
19 changes: 19 additions & 0 deletions blog/_quarto.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
project:
type: website
output-dir: docs

website:
title: "OpenML Blog"
description: "Open machine learning blog"
navbar:
right:
- about.qmd
- icon: github
href: https://github.com/openml/blog
format:
html:
theme: cosmo
css: styles.css



16 changes: 16 additions & 0 deletions blog/about.qmd
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
---
title: "About"
image: openml-logo.png
about:
template: jolla
links:
- icon: github
text: Github
href: https://github.com/openml/blog

---

# Welcome to the Open Machine Learning blog
This blog brings you stories about OpenML: why we want to streamline machine learning research, how you can use it, and what we are doing.
We are also open to [your stories](https://github.com/openml/blog#how-to-contribute) about anything related to open machine learning research, education, and applications.
Join the conversation :).
Empty file added blog/docs/.nojekyll
Empty file.
Loading
Loading