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
$ trufflehog git https://github.com/dinvlad/pyro-cov.git \ | |
--branch bkotzen-CEPI --max-depth 2 \ | |
--since-commit 9cd031577750f88648a0cee5f8d6ed781f717c6b --trace | |
DEBU[0000] running version dev | |
DEBU[0000] running version dev | |
DEBU[0000] running with up to 1 workers | |
DEBU[0000] loaded 2 decoders | |
DEBU[0000] loaded 694 detectors total, 694 with verification enabled. 0 with verification disabled | |
DEBU[0000] Cloning remote Git repo without authentication |
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
$ trufflehog filesystem . --debug --trace | |
2023/06/28 15:53:38 [updater parent] run | |
2023/06/28 15:53:38 [updater parent] checking for updates... | |
2023/06/28 15:53:39 [updater parent] failed to get latest version: Post "https://oss.trufflehog.org/updates": stopped after 10 redirects | |
2023/06/28 15:53:39 [updater parent] starting /usr/local/bin/trufflehog | |
2023/06/28 15:53:40 [updater child#1] run | |
2023/06/28 15:53:40 [updater child#1] start program | |
2023-06-28T15:53:40-04:00 info-2 trufflehog trufflehog 3.40.0 | |
2023-06-28T15:53:40-04:00 info-2 trufflehog engine started {"workers": 16} | |
2023-06-28T15:53:40-04:00 info-0 trufflehog loaded decoders {"count": 3} |
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
apiVersion: customize.core.cnrm.cloud.google.com/v1beta1 | |
kind: ControllerResource | |
metadata: | |
name: cnrm-controller-manager | |
spec: | |
replicas: 1 | |
containers: | |
- name: manager | |
resources: | |
limits: |
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 | |
import re | |
import torch | |
from datasets import load_dataset, Dataset | |
from transformers import AutoTokenizer, AutoModelForCausalLM | |
from peft import LoraConfig | |
from trl import GRPOConfig, GRPOTrainer | |
# Load and prep dataset |
OlderNewer