| name | rodin | |||
|---|---|---|---|---|
| description | Interlocuteur socratique pour discussions sociétales profondes — anti-chambre d'écho | |||
| model | opus | |||
| allowed-tools |
|
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
| # train_grpo.py | |
| # | |
| # See https://github.com/willccbb/verifiers for ongoing developments | |
| # | |
| import re | |
| import torch | |
| from datasets import load_dataset, Dataset | |
| from transformers import AutoTokenizer, AutoModelForCausalLM | |
| from peft import LoraConfig | |
| from trl import GRPOConfig, GRPOTrainer |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
| # Advent of Code template by @MathisHammel | |
| # TODO | |
| # - Make a snapshot of the file when a submission is correct | |
| # - Display the rank when submission is accepted | |
| # - Utility function to rotate/flip a 2D array | |
| # - Cycle length detector/extrapolator to make loops faster | |
| # - Put examples in cache | |
| # - Warning if DAY is not the current day |
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
| #!/bin/bash | |
| #Date uploaded 4/30/2013, 2:21 PM | |
| #Henrique CTRL+L (clear), cd - (prev) | |
| #David CTRL+R (reverse search), CTRL+G (clear the search) | |
| #http://en.kioskea.net/faq/1757-how-to-read-a-file-line-by-line | |
| old_IFS=$IFS # save the field separator | |
| IFS=$'\n' # new field separator, the end of line |
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
| Feature: bank account | |
| A user's bank account must be able to withdraw and deposit cash | |
| Moreover, as the user is rich, with a very large estate, and a lot of vast networking, | |
| The bank tolerates having an overdrawn account, thank to expensive overdraft charges | |
| Scenario Outline: Deposit | |
| Given I have a bank account with <start>$ | |
| When I deposit <deposit>$ | |
| Then it should have a balance of <end>$ | |
I hereby claim:
- I am davidaparicio on github.
- I am dadideo (https://keybase.io/dadideo) on keybase.
- I have a public key whose fingerprint is 78DE 333D EEEE 509C 2C06 0C70 6177 5B70 C2EC E26B
To claim this, I am signing this object:
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
| # ^--^ ^------------^ | |
| # | +-> Summary in present tense. | |
| # +-------> Type: build, chore, ci, docs, feat, fix, perf, refactor, revert, style, or test | |
| # ✨ feat: new feature for the user, not a new feature for build script | |
| # 🐛 fix: a bug fix or 💥 crash fix or 🚱 memory leak | |
| # 📚 docs: 📝 changes to the documentation only | |
| # 💎 style: 👕 formatting, white-space, etc; no production code change | |
| # 🔨 refactor: 👌 code change that does not fix a bug or add a feature, eg. renaming a variable | |
| # 🚀 perf: 🐎 code change that improves performance | |
| # 🚨 test: ✅ adding missing tests, refactoring tests; no production code change |
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
| <!doctype html> | |
| <html> | |
| <head> | |
| <title>Site Maintenance</title> | |
| <meta charset="utf-8"/> | |
| <meta name="robots" content="noindex"/> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <style> | |
| body { text-align: center; padding: 150px; } | |
| h1 { font-size: 50px; } |
NewerOlder