See rune2e.sh for info on how to run the experiment.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Project Policy | |
| This policy provides a single, authoritative, and machine-readable source of truth for AI coding agents and humans, ensuring that all work is governed by clear, unambiguous rules and workflows. It aims to eliminate ambiguity, reduce supervision needs, and facilitate automation while maintaining accountability and compliance with best practices. | |
| # 1. Introduction | |
| > Rationale: Sets the context, actors, and compliance requirements for the policy, ensuring all participants understand their roles and responsibilities. | |
| ## 1.1 Actors |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Bofa Rush Ironman v1.4 by Kirbuti (last update: 28 July 2023) | |
| Section 0: Setup/General notes | |
| This guide is designed to prioritize: | |
| 1. Rushing 43 Prayer while as low of a combat level as possible, | |
| 2. Obtaining barrows gloves, | |
| 3. Completing Song of the Elves immediately afterwards, | |
| 4. Begin completing Corrupted Gauntlet with stats that are reasonable to do so |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import gzip | |
| import json | |
| from dataclasses import asdict | |
| from pydantic import BaseModel | |
| class DataFile: | |
| def __init__(self, data_type, filename, mode, loader=None): | |
| if mode not in ['r', 'w', 'rt', 'wt']: |
The SalesForce CodeGen models are a family of large language models trained on a large amount of natural language data and then fine-tuned on specialized datasets of code. Models of size 350M, 2B, 6B, and 16B parameters are provided in three flavors:
- nl, the base model trained on The Pile, a large natural language dataset compiled by EleutherAI
- multi, which is fine-tuned from the nl model on a dataset of code in multiple languages, scraped from GitHub, and
- mono, which is fine-tuned from the multi model on Python code only.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| set -e | |
| ## Prereqs: | |
| ## brew install heroku | |
| ## brew install kafkacat | |
| ## heroku login -i | |
| ## Usage exmaple | |
| ## $ APP=roadie-admin-qa ./kafka-listener.sh gig.events |
I'm taking down this post. I just posted this as a side comment to explain a sentence on my latest blog post. This wasn't meant to be #1 on HN to start a huge war on functional programming... The thoughts are not well formed enough to have a huge audience. Sorry for all the people reading this. And please, don't dig through the history...
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| """ | |
| Bayesian Generative Classifier | |
| ------------------------------ | |
| """ | |
| # Author: Jake Vanderplas <[email protected]> | |
| import numpy as np | |
| from sklearn.neighbors.kde import KernelDensity | |
| from sklearn.mixture import GMM | |
| from sklearn.base import BaseEstimator, clone |