We can make this file beautiful and searchable if this error is corrected: It looks like row 2 should actually have 5 columns, instead of 3 in line 1.
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
É sempre importante verificar o protocolo exato do artigo ou guideline que você está seguindo. No geral, a administração do palivizumabe é feita em doses de 15 mg/kg, aplicadas uma vez por mês, iniciando-se antes do início do período de maior incidência do RSV. Porém, alguns centros podem adotar ajustes conforme a evolução clínica do paciente e os riscos adicionais. | |
user: Se o bebê estiver abaixo de 3,5 kg, ainda mantenho 15 mg/kg ou ajusto de forma diferente? | |
assistant: Normalmente, a dose de palivizumabe permanece na faixa de 15 mg/kg, independente de variações menores de peso. Contudo, em bebês muito abaixo do percentil de peso ou com condições específicas, é possível que as diretrizes do centro ou artigo que você segue recomendem uma avaliação individual. A dose em mg/kg, em geral, é calculada com base no peso atual do lactente em cada aplicação, para garantir a concentração adequada de anticorpos protetores ao longo do período de risco. | |
user: Há alguma contraindicação especial para PALIV nesses casos de |
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
from pystray import Icon, Menu, MenuItem | |
from PIL import Image, ImageDraw | |
import threading | |
class TrayIcon: | |
def __init__(self, title="Recording..."): | |
self.title = title | |
self.icon = None | |
self._thread = None |
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
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 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 pandas as pd | |
import numpy as np | |
import streamlit as st | |
st.set_page_config( | |
page_title="SDC selector", | |
layout="wide", | |
) | |
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 pandas as pd | |
from datasets import Dataset | |
# Requires transformers 4.48 | |
from transformers import ( | |
AutoTokenizer, | |
AutoModelForSequenceClassification, | |
TrainingArguments, | |
Trainer, | |
DataCollatorWithPadding, | |
) |
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
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 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
# 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 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
/* 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 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 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 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
# 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: |
NewerOlder