Skip to content

Commit

Permalink
README
Browse files Browse the repository at this point in the history
  • Loading branch information
SubhadityaMukherjee committed Jul 8, 2024
1 parent 939a882 commit 73d1d65
Show file tree
Hide file tree
Showing 12 changed files with 31 additions and 51 deletions.
Binary file added .DS_Store
Binary file not shown.
Binary file added .github/.DS_Store
Binary file not shown.
27 changes: 27 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# OpenML Labs blog

This repository serves as the blog for the OpenML Labs. It uses Quarto to render the blog posts from markdown and jupyter notebooks.

## How to write a post?

- Clone this repository
- Install quarto : [Here](https://quarto.org/docs/get-started/)
- Create a new folder in the `posts` directory with the name of your post
- `git checkout -b <post-name>`
- Create a markdown file or a jupyter notebook in the folder
- Add a header to the start of the file as below
```yaml
---
toc: true
layout: post
description: Experimenting with LLM temperature and its effects on answer quality
categories: [llm]
title: Experiments with Temperature
author: Subhaditya Mukherjee
date : 2024-07-08
---
```
- Add any images or other files that are needed for the post in the folder
- `git add . && git commit -m "Added post" && git push`
- Create a pull request to the `main` branch
- Once the PR is merged, the post will be live on the blog
Binary file added docs/.DS_Store
Binary file not shown.
4 changes: 2 additions & 2 deletions docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ <h1>Welcome to the Open Machine Learning blog</h1>
</div>
</div>
<div class="list quarto-listing-default">
<div class="quarto-post image-right" data-index="0" data-categories="llm" data-listing-date-sort="1720389600000" data-listing-file-modified-sort="1720279950460" data-listing-date-modified-sort="NaN" data-listing-reading-time-sort="6" data-listing-word-count-sort="1118">
<div class="quarto-post image-right" data-index="0" data-categories="llm" data-listing-date-sort="1720389600000" data-listing-file-modified-sort="1720444779540" data-listing-date-modified-sort="NaN" data-listing-reading-time-sort="6" data-listing-word-count-sort="1118">
<div class="thumbnail">
<p><a href="./posts/Experiments-with-temperature/experiments_with_temp.html" class="no-external"></a></p><a href="./posts/Experiments-with-temperature/experiments_with_temp.html" class="no-external">
<p class="card-img-top"><img src="posts/Experiments-with-temperature/search.png" class="thumbnail-image card-img"/></p>
Expand Down Expand Up @@ -617,7 +617,7 @@ <h3 class="no-anchor listing-title">
}
var localhostRegex = new RegExp(/^(?:http|https):\/\/localhost\:?[0-9]*\//);
var mailtoRegex = new RegExp(/^mailto:/);
var filterRegex = new RegExp("https:\/\/openml-labs\.github\.io\/blog\/");
var filterRegex = new RegExp('/' + window.location.host + '/');
var isInternal = (href) => {
return filterRegex.test(href) || localhostRegex.test(href) || mailtoRegex.test(href);
}
Expand Down
Binary file added docs/posts/.DS_Store
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -679,7 +679,7 @@ <h2 class="anchored" data-anchor-id="conclusion">Conclusion</h2>
}
var localhostRegex = new RegExp(/^(?:http|https):\/\/localhost\:?[0-9]*\//);
var mailtoRegex = new RegExp(/^mailto:/);
var filterRegex = new RegExp("https:\/\/openml-labs\.github\.io\/blog\/");
var filterRegex = new RegExp('/' + window.location.host + '/');
var isInternal = (href) => {
return filterRegex.test(href) || localhostRegex.test(href) || mailtoRegex.test(href);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,7 @@ <h2 class="anchored" data-anchor-id="we-hope-to-see-you-at-our-workshop">We hope
}
var localhostRegex = new RegExp(/^(?:http|https):\/\/localhost\:?[0-9]*\//);
var mailtoRegex = new RegExp(/^mailto:/);
var filterRegex = new RegExp("https:\/\/openml-labs\.github\.io\/blog\/");
var filterRegex = new RegExp('/' + window.location.host + '/');
var isInternal = (href) => {
return filterRegex.test(href) || localhostRegex.test(href) || mailtoRegex.test(href);
}
Expand Down
47 changes: 0 additions & 47 deletions docs/sitemap.xml

This file was deleted.

Binary file added posts/.DS_Store
Binary file not shown.
Binary file added posts/Experiments-with-temperature/.DS_Store
Binary file not shown.

0 comments on commit 73d1d65

Please sign in to comment.