emerging-trajectories VS CX_DB8

Compare emerging-trajectories vs CX_DB8 and see what are their differences.

emerging-trajectories

Open source framework for using LLMs to forecast political, economic, and social events. (by wgryc)

CX_DB8

a contextual, biasable, word-or-sentence-or-paragraph extractive summarizer powered by the latest in text embeddings (Bert, Universal Sentence Encoder, Flair) (by Hellisotherpeople)
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
emerging-trajectories CX_DB8
6 4
57 222
- -
9.1 0.0
13 days ago over 1 year ago
Python Python
MIT License GNU General Public License v3.0 only
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

emerging-trajectories

Posts with mentions or reviews of emerging-trajectories. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-04-14.
  • Large language models (e.g., ChatGPT) as research assistants
    1 project | news.ycombinator.com | 27 Apr 2024
    I think LLMs can do a lot more than people assume, but they need to be given the proper frameworks.

    When was the last time a researcher, economist, etc. was given 10,000 papers and simply told "do some original work"? That's not how it works. Daniel (the author) provides some good examples where _streamlined_ work can happen, but again, this is pretty basic stuff.

    To push this further, though, imagine LLMs that fill in frameworks... A few steps here: (1) do a lit review, (2) fill in the framework, (3) discuss what might be missing, and maybe even try and fill in the missing information.

    I'm doing something like this with politics and economics (see: https://emergingtrajectories.com/) and it works generally well. I think with a ton more engineering, curating of knowledge bases, etc., one can get these LLMs to actually find some new "nuggets" of information.

    Admittedly, it's very hard, but I think there's something there.

  • Ask HN: Is RAG the Future of LLMs?
    2 projects | news.ycombinator.com | 14 Apr 2024
    RAG will have a place in the LLM world, since it's a way to obtain data/facts/info for relevant queries.

    Since you asked about alternatives...

    (a) "World models" where LLMs structure information into code, structured data, etc. and query those models will likely be a thing. AlphaGeometry uses this[1], and people have tried to abstract this in different ways[2].

    (b) Depending on how you define RAG, knowledge graphs could be a form of RAG or alternatively an alternative to them. Companies like Elemental Cognition[3] are building distinct alternatives to RAG that use such graphs and give LLMs the ability to run queries on said graphs. Another approach here is to build "fact databases" where, you structure observations about the world into standalone concepts/ideas/observations and reference those[4]. Again, similar to RAG but not quite RAG as we know it today.

    [1] https://deepmind.google/discover/blog/alphageometry-an-olymp...

    [2] https://arxiv.org/abs/2306.12672

    [3] https://ec.ai/

    [4] https://emergingtrajectories.com/

  • Long-form factuality in large language models
    2 projects | news.ycombinator.com | 30 Mar 2024
    For those interested in using search-augmented "reasoning", I implemented something similar in Emerging Trajectories[1], an open source package that forecasts geopolitical and economic events. We extract facts[2] from various websites (Google searches, news articles, RSS feeds) and have the LLM generate a hypothesis on a metric.

    We're tracking the info forecasts to see how well this does for future events. For example, we're pitting the LLMs against each other to predict March 2024 CPI[3].

    [1] https://emergingtrajectories.com/

    [2] Sample code: https://github.com/wgryc/emerging-trajectories/blob/main/eme...

    [3] https://emergingtrajectories.com/a/statement/28

  • Ask HN: What are some actual use cases of AI Agents?
    6 projects | news.ycombinator.com | 14 Feb 2024
    I'm working on research agents to help with economic, financial, and political research. These agents are open source (see: https://github.com/wgryc/emerging-trajectories).

    The use cases are pretty straight forward and low risk:

    1. Run a Google web search.

    2. Query a news API.

    3. Write a document based on the above, while citing sources.

    Here's an example of something written yesterday, where I'm forecasting whether July 2024 will be the hottest on record: https://emergingtrajectories.com/a/forecast/74

    This is working well in that the writeups are great and there are some "aha" moments, like the agent finding and referencing the The National Snow and Ice Data Center (NSIDC)... Very cool! I wouldn't have thought of it.

    Then there's the part where the agent also tells me that the Oregon Department of Transportation has holidays during the summer, which doesn't matter at all.

    So, YMMV, as they say... But I am more productive with these agents. I wouldn't publish anything formally without confirming and reviewing the content, though.

  • Ask HN: What have you built with LLMs?
    43 projects | news.ycombinator.com | 5 Feb 2024
    LLM agents to forecast geopolitical and economic events.

    - Site: https://emergingtrajectories.com/

    - GitHub repo: https://github.com/wgryc/emerging-trajectories

    I've helped a number of companies build various sorts of LLM-powered apps (chatbots mainly) and found it interesting but not incredibly inspiring. The above is my attempt to build something no one else is working on.

    It's been a lot of fun. Not sure if it'll be a "thing" ever, but I enjoy it.

CX_DB8

Posts with mentions or reviews of CX_DB8. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-02-05.
  • Ask HN: What have you built with LLMs?
    43 projects | news.ycombinator.com | 5 Feb 2024
    I was working on this stuff before it was cool, so in the sense of the precursor to LLMs (and sometimes supporting LLMs still) I've built many things:

    1. Games you can play with word2vec or related models (could be drop in replaced with sentence transformer). It's crazy that this is 5 years old now: https://github.com/Hellisotherpeople/Language-games

    2. "Constrained Text Generation Studio" - A research project I wrote when I was trying to solve LLM's inability to follow syntactic, phonetic, or semantic constraints: https://github.com/Hellisotherpeople/Constrained-Text-Genera...

    3. DebateKG - A bunch of "Semantic Knowledge Graphs" built on my pet debate evidence dataset (LLM backed embeddings indexes synchronized with a graphDB and a sqlDB via txtai). Can create compelling policy debate cases https://github.com/Hellisotherpeople/DebateKG

    4. My failed attempt at a good extractive summarizer. My life work is dedicated to one day solving the problems I tried to fix with this project: https://github.com/Hellisotherpeople/CX_DB8

  • How critical theory is radicalizing high school debate
    1 project | news.ycombinator.com | 30 Jul 2023
    I really missed out on this thread despite being likely one of the most important folks to post on it (I turned my time in Policy Debate into an NLP career - see DebateSum: https://huggingface.co/datasets/Hellisotherpeople/DebateSum and CX_DB8: https://github.com/Hellisotherpeople/CX_DB8)

    For those who are interested in the intersection of AI and Debate Evidence, there's a lot more work being done right now. We have a follow-up dataset to DebateSum on its way to a paper at some conference called OpenCaseList: https://huggingface.co/datasets/Yusuf5/OpenCaselist which is basically DebateSum but 40x better in every way. This is also likely the largest and best quality argument mining dataset ever gathered.

    Fun anecdote, when I tried to introduce automatic extractive summarization tools to the debate community, I had parent/judge/teacher groups who were FLIPPING out about this. They were not happy at the idea of automatic debating or computer assisted debating systems.

  • Copy is all you need
    2 projects | news.ycombinator.com | 17 Jul 2023
    This has deep connections with my attempt to implement an effective queryable word-level grammatically correct extractive text summarizer (AKA: The way most people actually summarize documents) - https://github.com/Hellisotherpeople/CX_DB8

    I will try to implement this with the necessary changes to actually make this work properly, where instead of generating a new answer, it simply highlights the most likely text spans.

  • Haystack 1.0 – open-source NLP framework to build NLProc back end applications
    3 projects | news.ycombinator.com | 9 Dec 2021
    Is there any path forward to make Haystack do word-level extractive summarization? e.g. like this: https://github.com/Hellisotherpeople/CX_DB8

    or like this: https://huggingface.co/spaces/Hellisotherpeople/Unsupervised...

    I am trying to find anything better than these two for this task. I feel like Haystack could be an option - but I am not sure.

What are some alternatives?

When comparing emerging-trajectories and CX_DB8 you can also consider the following projects:

newscatcher - Programmatically collect normalized news from (almost) any website.

reddit-thread-summarizer - A Reddit thread summarizer is a tool that generates a summary of the main points or themes discussed in a Reddit thread

frogbase - Transform audio-visual content into navigable knowledge.

CNNMRF - code for paper "Combining Markov Random Fields and Convolutional Neural Networks for Image Synthesis"

haystack - :mag: LLM orchestration framework to build customizable, production-ready LLM applications. Connect components (models, vector DBs, file converters) to pipelines or agents that can interact with your data. With advanced retrieval methods, it's best suited for building RAG, question answering, semantic search or conversational agent chatbots.

gpt_jailbreak_status - This is a repository that aims to provide updates on the status of jailbreaking the OpenAI GPT language model.

joia - A ChatGPT alternative designed for team collaboration. Lightweight, privacy-friendly and open source.

data-analytics - Welcome to the Data-Analytics repository

LookupChatGPT - A chrome extension which looks up selected text via ChatGPT using your custom prompts

SoM - Set-of-Mark Prompting for LMMs

Spliit - Free and Open Source alternative to Splitwise. Share expenses with your friends and family.

Language-games - Dead simple games made with word vectors.