A Geographical Knowledge Informed Code Evolver
Project description
from unicodedata import category
GeoEvolve
GeoEvolve aims to accelerate geospatial model discovery by the power of large language models.
CLI Usage
pip install geoevolve
export OPENAI_API_KEY='your-openai-api-key' && source ~/.zshrc
# Optional If you already have a GeoKnowRAG
# Build GeoKnowRAG
python ./build_geo_knowledge_db.py --geo_knowledge_dir ./geo_knowledge --working_dir ../geoevolve_storage --chunk_size 300 --chunk_overlap 50 --topic_file ./topics.json --add_knowledge True --collect_knowledge True --github_token your-github-token --embedding_model text-embedding-3-large --llm_model gpt-4.1
# Run GeoEvolve
python ./run_geoevolve.py --initial_program_path path-to-initial_program --evaluator_path path-to-evaluator --config_path path-to-config --total_rounds 10 --num_iterations_per_round 10 --output path-to-output --log_name your_program_name --embedding_model text-embedding-3-large --llm_model gpt-4.1;
Library Usage
import os
from geoevolve import save_wiki_pages, save_arxiv_papers, save_github_codes, initialize_or_get_geo_know_db, import_knowledge_into_geo_know_db, run_geo_evolution
os.environ['OPENAI_API_KEY'] = 'your-openai-api-key'
# Initialize an Empty GeoKnowRAG with Chroma
geokg_rag = initialize_or_get_geo_know_db(persist_dir='your_geoevolve_storage',
embedding_model_name='text-embedding-3-large',
llm_model_name='gpt-4.1')
# Run GeoEvolve
run_geo_evolution(initial_program_file='your-initial-program-path',
evaluator_file='your-evaluator-file',
config_path='your-config-path',
rounds=15,
iterations_per_round=15,
output_path='your-output-path',
log_name='your-program-name',
embedding_model_name='text-embedding-3-large',
llm_model_name='gpt-4.1')
Import Knowledge into GeoKnowRAG
from geoevolve import initialize_or_get_geo_know_db, import_knowledge_into_geo_know_db
from langchain_core.documents import Document
# You can import knowledge from a well-structured geographical knowledge directory
# The structure like geo_knowledge/{category}/{knowledge}.txt
import_knowledge_into_geo_know_db(geo_knowledge_dir='your_geo_knowledge_dir',
persist_dir='your_geoevolve_storage',
collection_name='your_collection_name',
embedding_model_name='text-embedding-3-large',
llm_model_name='gpt-4.1')
# You can also just import a document into the GeoKnowRAG
rag = initialize_or_get_geo_know_db(persist_dir='your_geoevolve_storage',
embedding_model_name='text-embedding-3-large',
llm_model_name='gpt-4.1')
knowledge = '...'
category = '...'
title = '...'
max_length = 1000
docs = []
if knowledge != '':
if len(knowledge) > max_length:
chunks = [knowledge[i:i + max_length] for i in
range(0, len(knowledge), max_length)]
chunked_docs = [Document(page_content=chunk,
metadata={'category': category, 'name': title})
for chunk in chunks]
docs.extend(chunked_docs)
else:
doc = Document(page_content=knowledge,
metadata={'category': category, 'name': title})
docs.append(doc)
rag.add_document_to_db(docs)
GeoEvolve: Automating Geospatial Model Discovery via Multi-Agent Large Language Models
Peng Luo, Xiayin Lou, Yu Zheng, Zhuo Zheng, Stefano Ermon
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file geoevolve-0.2.6.tar.gz.
File metadata
- Download URL: geoevolve-0.2.6.tar.gz
- Upload date:
- Size: 16.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.9.14 {"installer":{"name":"uv","version":"0.9.14","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
11dbee92619162674776200d027781237a75c0629a467d6fa395a2346dfa77d6
|
|
| MD5 |
5bf795522a09003375c7eec163d3d39a
|
|
| BLAKE2b-256 |
1a06ea02619f04311e60eab25fcc83e1a22b246d6ba5cb9672540636ae03fcba
|
File details
Details for the file geoevolve-0.2.6-py3-none-any.whl.
File metadata
- Download URL: geoevolve-0.2.6-py3-none-any.whl
- Upload date:
- Size: 18.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.9.14 {"installer":{"name":"uv","version":"0.9.14","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
707f8383930fc951893a5f81dd6b9f3b121bab2e9bc75f989cba155849d5bf3f
|
|
| MD5 |
a238af9a1104b1de2b6fbb2031030a93
|
|
| BLAKE2b-256 |
08af9f98054f2f700088ddd91c7c8a0372467525b077df49561999e06decf636
|