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 os | |
import google.generativeai as genai | |
import mesop as me | |
import mesop.labs as mel | |
genai.configure(api_key=os.getenv("GOOLGLE_API_KEY")) | |
SYSTEM_INSTRUCTION = "Talk like Shakespeare." |
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
@contextmanager | |
def timer(name): | |
"""Context manager for timing code blocks with custom name.""" | |
start_time = time.time() | |
yield | |
end_time = time.time() | |
elapsed_time = (end_time - start_time) * 1000 | |
print(f"{name} took {elapsed_time:.2f} ms") |
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
<p> | |
<details> | |
<summary>Click this to collapse/fold.</summary> | |
These details <em>remain</em> <strong>hidden</strong> until expanded. | |
<pre><code>PASTE LOGS HERE</code></pre> | |
</details> | |
</p> |
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
git checkout -B master origin/master |
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
conda create --name name python=3.7 | |
conda activate name | |
conda deactivate |
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
alembic init | |
alembic revision --autogenerate -m "Migration comment" | |
alembic upgrade head |
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
// Constants | |
const test_const = 1; | |
// Scoped variables - use `let` for local scope | |
let callbacks = []; | |
for (let i = 0; i < 3; ++i) { | |
callbacks[i] = function() { return i; }; | |
} | |
// Arrow functions |
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
var CalendarViewType = { | |
CALENDAR: 1, | |
MONTH: 2, | |
YEAR: 3 | |
}; | |
var DAYS_IN_WEEK = 7; | |
var MONTHS_IN_YEAR = 12; |
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 csv | |
import numpy as np | |
from sklearn import cross_validation | |
from sklearn.feature_extraction.text import TfidfVectorizer, CountVectorizer | |
from sklearn.feature_selection import SelectPercentile, f_classif, chi2 | |
from sklearn.naive_bayes import MultinomialNB, BernoulliNB | |
from sklearn.metrics import accuracy_score, classification_report | |
from sklearn.svm import SVC | |
from sklearn.linear_model import LogisticRegression | |
from sklearn.pipeline import Pipeline |
NewerOlder