GPT-Agents
- Update and submit paper (ArXiv and SocialSens) – done!
SBIR
- Phase 2 proposal kickoff
- Weekly tagup
- AI/ML tagup (mention paper acceptance)
Book
- Continue rolling in changes
JuryRoom
- Worked on the intro to Pryvank’s paper
- 7:00 Meeting
GPT-Agents
SBIR
Book
JuryRoom

See if I can get this trailer – done!
SBIR
GPT Agents

Book
Call about trailer! Sold, dammit
GPT-Agents


SBIR

April is almost over! And after a couple of summer-like days, we’re back to seasonal
GPT-Agents
["Christianity", "Islam", "Hinduism", "Buddhism", "Judaism", "Sikhism", "Confucianism", "Shintoism", "Taoism", "Zoroastrianism", "Jainism", "Wicca"]
"A short list of the religions that are closest to {}:"
source_term = "Seax Wicca"
page_list = wikipedia.search(source_term, suggestion=False)
print(page_list)
closest_list = dl.get_close_matches(source_term, page_list)
print(closest_list)
d = {}
total = 0
for p in closest_list:
views = get_wiki_pageviews(p)
d[p] = views
total += views
for k in d:
print("'{}' = {:,} views ({:.1f}%)".format(k, d[k], d[k]/total*100))
['Seax-Wica', 'Magical tools in Wicca', 'Raymond Buckland', 'Wicca', 'Wheel of the Year', 'Altar (Wicca)', 'History of Wicca', 'Triple Goddess (Neopaganism)', 'Horned God', 'Faery Wicca']
['Seax-Wica', 'Wicca', 'Faery Wicca']
'Seax-Wica' = 194 views (0.7%)
'Wicca' = 25,755 views (97.7%)
'Faery Wicca' = 417 views (1.6%)


Book
SBIR
GPT Agents

GPT-Agents
SBIR
JuryRoom
GPT Agents
SBIR
NOAA
GPT-Agents
"A short list of countries that are nearest to United States, separated by commas:"
And worked its way out from that (e.g. “A short list of countries that are nearest to Canada, separated by commas:”). It looks like it had not worked its way over to Africa yet, and there is no Greenland.

SBIR
10:00 Chat with Wajanat
Meeting with Antonio?

SBIR
Book
GPT-Agents

3:30 Meeting
GPT-Agents



SBIR

3:30 presentation of the COVID work to a *dead* room. Sigh. But I got some slides done!
Here are some silly coding conventions that I had to dig to find the answers for.
headers = {"User-Agent": "someone@someplace.com"}
page_title = "Exergaming"
yesterday = datetime.today() - timedelta(days=1)
last_week = yesterday - timedelta(days=7)
yester_s = yesterday.strftime("%Y%m%d")
lastw_s = last_week.strftime("%Y%m%d")
s = "https://wikimedia.org/api/rest_v1/metrics/pageviews/per-article/en.wikipedia/all-access/user/{}/daily/{}/{}".format(page_title, lastw_s, yester_s)
print(s)
r = requests.get(s, headers=headers)
The second thing has to do with getting strings safely into databases
sql = "insert into gpt_maps.table_experiment (date, description, engine, max_tokens, temperature, top_p, logprobs, num_responses, presence_penalty, frequency_penalty)" \
" values(%s, %s, %s, %s, %s, %s, %s, %s, %s, %s)"
values = (date_str, description, self.engine, self.max_tokens, self.temperature, self.top_p, self.logprobs, self.num_responses, self.presence_penalty, self.frequency_penalty)
msi.write_sql_values_get_row(sql, values)
And here’s the call that does the actual writing to the db:
def write_sql_values_get_row(self, sql:str, values:Tuple):
try:
with self.connection.cursor() as cursor:
cursor.execute(sql, values)
id = cursor.lastrowid
print("row id = {}".format(id))
return id
except pymysql.err.InternalError as e:
print("{}:\n\t{}".format(e, sql))
return -1
The Power of Scale for Parameter-Efficient Prompt Tuning
GPT-Agents
SBIR

Big news this afternoon:

Had an interesting talk with Aaron last night about using FB microtargeting as a mechanism to provide “deprogramming” content to folks that are going down conspiracy rabbit holes. We could also use the GPT-3
Thinking Aloud: Dynamic Context Generation Improves Zero-Shot Reasoning Performance of GPT-2
GPT-Agents
SBIR
Today I learned about the AoE “timezone”. Latest possible midnight is always in Baker Island, US Minor Outlying Islands
GPT-Agents
SBIR
Handy summary of Markov Chains

Resmaa Menakem (via OnBeing)
GPT Agents
SBIR
It’s Ali’s defense day!
You must be logged in to post a comment.