Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Handle many plates #4

Open
nlarusstone opened this issue Oct 20, 2023 · 0 comments
Open

Handle many plates #4

nlarusstone opened this issue Oct 20, 2023 · 0 comments

Comments

@nlarusstone
Copy link
Contributor

Problem

If there are many plates in a single file, we struggle. We do fall back to a longer context model:

llm = ChatOpenAI(temperature=0, model="gpt-4").with_fallbacks(
    [ChatOpenAI(temperature=0, model="gpt-3.5-turbo-16k")]
)

but GPT-3.5 is worse at this task and it still has a token limit. In addition, performance seems to degrade if there are a lot of plates.

See examples/MultiPlateMetadata.xlsx for an example of a file (with 13 96-well plates) where we would like to be able to call something like the following:

res = parse_plates(df, num_plates=13, num_rows=8, num_cols=12)

Suggested avenues of exploration

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant