This file contains 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
from typing import Literal | |
import asyncio | |
import numpy as np | |
from openai import AsyncOpenAI | |
import tiktoken | |
def embed( | |
texts: list[str], | |
model: Literal[ |
This file contains 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 pandas as pd | |
import numpy as np | |
import streamlit as st | |
st.set_page_config( | |
page_title="SDC selector", | |
layout="wide", | |
) | |
This file contains 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 pandas as pd | |
from datasets import Dataset | |
# Requires transformers 4.48 | |
from transformers import ( | |
AutoTokenizer, | |
AutoModelForSequenceClassification, | |
TrainingArguments, | |
Trainer, | |
DataCollatorWithPadding, | |
) |
This file contains 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
from io import StringIO | |
import re | |
from time import perf_counter | |
import json | |
import yaml | |
import pandas as pd | |
import tomlkit | |
from openai import OpenAI | |
client = OpenAI() |
This file contains 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
# Licensed under the MIT-0 License. See https://opensource.org/licenses/MIT-0 for details. | |
import re | |
def markdown_to_unicode(md_text): | |
""" | |
Converts Markdown text to Unicode by transforming Markdown syntax for | |
bold and italic text into their corresponding Unicode characters, | |
handling lists and headings, and preserving the formatting within code blocks. |
This file contains 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
/* Obsidian CSS reference: https://docs.obsidian.md/Reference/CSS+variables/Editor/Code */ | |
body { | |
/* Code syntax highlighting */ | |
--jetbrains-grey-code: #BCBEC4; | |
--code-normal: --jetbrains-grey-code; | |
--code-comment: #7A7E85; | |
--code-function: --jetbrains-grey-code; | |
--code-important: hotpink; | |
--code-keyword: #CF8E6D; |
This file contains 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 static com.intellij.openapi.util.text.StringUtil.escapeStringCharacters as escapeStr | |
SEPARATOR = ", " | |
QUOTE = "\"" | |
NEWLINE = System.getProperty("line.separator") | |
def record(columns, dataRow) { | |
OUT.append(" {").append(NEWLINE) | |
columns.eachWithIndex { column, idx -> |
This file contains 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
# MIT License | |
# | |
# Copyright (c) 2024 David Gilbertson | |
# | |
# Permission is hereby granted, free of charge, to any person obtaining a copy | |
# of this software and associated documentation files (the "Software"), to deal | |
# in the Software without restriction, including without limitation the rights | |
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
# copies of the Software, and to permit persons to whom the Software is | |
# furnished to do so, subject to the following conditions: |
This file contains 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
Word | Deconstruction | |
---|---|---|
it's | it ~is | |
years | year ~s | |
going | go ~ing | |
that's | that ~is | |
i'm | i ~am | |
things | thing ~s | |
states | state ~s | |
including | include ~ing | |
called | call ~ed |
This file contains 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
print('Hello from testing.py') |
NewerOlder