SBIRs
- Big kerfuffle on the report yesterday afternoon. As a result, I just worked on it till it was done. Submitted this morning to show my commitment. Sigh
- Need to work on the slide deck today but my motivation is lacking
SBIRs
World’s First AI Pageant To Judge Winner On Beauty And Social Media Clout
SBIRs
Tax day!
Read Collective intelligence: A unifying concept for integrating biology across scales and substrates, which is wild, and feeds into the prompt-as-life concept I’ve been toying with. Among other things, it opens up experiments to show the level of self-organization available to prompts:
Ordered The Sentient Cell: The Cellular Foundations of Consciousness
SBIRS
Conquering the COVID-19 Infodemic: How the Digital Black Press Battled Racialized Misinformation in 2020
SBIRs
Markov Chain Monte Carlo: Exploring Probability Through Random Walks
Imagine you’re trying to figure out how effective a new drug is at treating a disease. The traditional statistical methods might not work very well because the problem is too complex – there are just too many factors to consider. This is where Markov Chain Monte Carlo (MCMC) can really shine.
MCMC is a powerful technique that combines two key ideas: Markov chains and Monte Carlo simulations.
A Markov chain is a sequence of events where each step only depends on the previous one. It’s like a random walk, where your next move is based only on where you are now, not on your whole history.
Monte Carlo simulations, on the other hand, are all about playing with randomness to find answers. Instead of trying to calculate everything exactly, you take a bunch of random samples and use those to estimate what you want to know.
Put these two ideas together, and you get MCMC. The basic process is:
Over time, as you keep taking these random steps and accepting or rejecting them, your guesses will start to converge towards a meaningful result. This convergence is key – it tells you that the MCMC process has thoroughly explored the probability distribution and found a stable estimate.
MCMC is really powerful because it can handle complex models and uncertainties that would be very difficult to deal with using traditional methods. In our drug example, MCMC could help you estimate the drug’s effectiveness while accounting for all sorts of factors like patient characteristics, side effects, and so on.
The great thing about MCMC is that it’s flexible and can be adapted to all kinds of research problems, from predicting disease progression to optimizing drug combinations for cancer treatment. By leveraging the power of random walks and probability, MCMC can turn complexity into clarity and uncertainty into insight. It’s a truly remarkable tool in the researcher’s toolkit.
Chores:
SBIRs
GPT Agents
The eclipse was cool. Even with clouds, it’s magical:

That’s the view to where the sun is still shining. We could also see the eclipse faintly through the clouds, which must have been how most people saw it before rapid travel. The light was so faint, it was easy to imagine the sun and the moon fighting. I swear I saw sparks.
SBIRs
Prepping to go to the Eclipse! The forecast is looking pretty good!

SBIRs
GPT Agents
Dont you (forget NLP): Prompt injection with control characters in ChatGPT
SBIRs
5:00 power washer
CUI 2024 paper:
SBIRs
GPT Agents
Need to move the crown appointment
Review board faults Microsoft for ‘cascade’ of errors in China hack
SBIRs
Call powerwasher
SBIRs
Pick up the truck if the rain stays away this morning – done!
Good Organizational Lobotomy writeup: The Descent of Elon Musk
SBIRs
GPT Agents
AI experts: Racist audio of Baltimore County principal’s voice is fake – The Baltimore Banner
Example: Pandas Excel output with a chart
##############################################################################
#
# An example of converting a Pandas dataframe to an xlsx file with a chart
# using Pandas and XlsxWriter.
#
# SPDX-License-Identifier: BSD-2-Clause
# Copyright 2013-2024, John McNamara, jmcnamara@cpan.org
#
import pandas as pd
# Create a Pandas dataframe from some data.
df = pd.DataFrame({"Data": [10, 20, 30, 20, 15, 30, 45]})
# Create a Pandas Excel writer using XlsxWriter as the engine.
writer = pd.ExcelWriter("pandas_chart.xlsx", engine="xlsxwriter")
# Convert the dataframe to an XlsxWriter Excel object.
df.to_excel(writer, sheet_name="Sheet1")
# Get the xlsxwriter workbook and worksheet objects.
workbook = writer.book
worksheet = writer.sheets["Sheet1"]
# Create a chart object.
chart = workbook.add_chart({"type": "column"})
# Get the dimensions of the dataframe.
(max_row, max_col) = df.shape
# Configure the series of the chart from the dataframe data.
chart.add_series({"values": ["Sheet1", 1, 1, max_row, 1]})
# Insert the chart into the worksheet.
worksheet.insert_chart(1, 3, chart)
# Close the Pandas Excel writer and output the Excel file.
writer.close()
SBIRs
GPT Agents
Here’s Google’s generative API/playground/documentation site: Vertex AI
SBIRs

On the Conversational Persuasiveness of Large Language Models: A Randomized Controlled Trial
Tasks
SBIRs
You must be logged in to post a comment.