GitHub Profile β€” Dr. Eleanora Voss


Profile Header

@evoss-npri

Bio:
Research Director @ North Platte Research Initiative. Avian cognition, viral vectors, cross-species communication. Currently in the field. 🦜

Location: North Platte, NE
Email: e.voss@kbird.ai
Website: eleanora-voss.github.io
Twitter: @eleanora_voss (inactive)

Organizations: North Platte Research Initiative


Pinned Repositories


πŸ“¦ kbird-research

Vector Simulation & Field Data Analysis

Python toolkit for simulating viral vector distribution in avian neural tissue and analyzing field observation data from the North Platte study.

🐍 Python Β· ⭐ 3 Β· 🍴 0 Β· πŸ“¦ 0 releases
Updated: January 10, 2026

README.md:

# KBIRD Research Tools
 
Computational tools for cross-species cognitive enhancement research.
 
## ⚠️ IMPORTANT NOTICE
 
This repository contains preliminary analysis code for the North Platte 
field study. Some components are proprietary and have been removed 
pending publication.
 
## Installation
 
```bash
git clone https://github.com/evoss-npri/kbird-research.git
cd kbird-research
pip install -r requirements.txt

Usage

Vector Simulation (simulation/)

Basic adenoviral tropism modeling for avian neural tissue.

NOTE: The complete simulation suite includes proprietary code developed under NDA. What remains here is the open-source framework for educational purposes.

Field Data Analysis (analysis/)

Scripts for processing behavioral observation data.

Contributing

Not currently accepting PRs. This is primarily a personal research repository.

Citation

If you use this code, please cite:

Voss, E. (2026). KBIRD Research Tools. North Platte Research Initiative. DOI: [pending]

License

MIT for open components. Proprietary components marked in source.


**Repository Contents:**

kbird-research/ β”œβ”€β”€ README.md β”œβ”€β”€ requirements.txt β”œβ”€β”€ .gitignore β”œβ”€β”€ LICENSE β”‚ β”œβ”€β”€ simulation/ β”‚ β”œβ”€β”€ init.py β”‚ β”œβ”€β”€ tropism_model.py # Basic tropism calculations β”‚ β”œβ”€β”€ capsid_sim.py # Capsid modification simulator β”‚ β”‚ └── [NOTE: Full version proprietary β€” see lines 89-156] β”‚ β”œβ”€β”€ neural_distribution.py # Vector distribution in tissue β”‚ β”‚ └── [NOTE: Proprietary model β€” contact for access] β”‚ └── field_conditions.py # Temperature/humidity effects β”‚ β”œβ”€β”€ analysis/ β”‚ β”œβ”€β”€ init.py β”‚ β”œβ”€β”€ vocalization_parser.py # Parse bird vocal recordings β”‚ β”œβ”€β”€ behavior_tracker.py # Markov models of behavior β”‚ β”œβ”€β”€ flock_dynamics.py # Collective movement analysis β”‚ β”‚ └── [NOTE: Convergence detection proprietary] β”‚ └── data_export.py # Format for publication β”‚ β”œβ”€β”€ data/ # [EXCLUDED β€” field data proprietary] β”‚ └── README.md β”‚ β€œRaw field data excluded from public repo. β”‚ Contact e.voss@kbird.ai for collaboration inquiries.” β”‚ └── docs/ β”œβ”€β”€ methodology.md # Public methodology overview └── field_notes/ # [EMPTY β€” private]


**Key Code File β€” tropism_model.py:**

```python
"""
Avian Neural Tropism Model
Simple simulation of adenoviral vector distribution in bird brains.

Author: E. Voss
Date: 2024-2026
"""

import numpy as np
from typing import Tuple, Optional

# NOTE: This is the educational version. The production model includes
# proprietary capsid modifications not cleared for public release.
# Contact NPRI for collaboration access.

class AvianTropismModel:
    """
    Model viral vector tropism for avian neural tissue.
    
    Based on Voss & Chen 2019, with extensions for multi-species
    receptor binding (see proprietary branch for full implementation).
    """
    
    def __init__(self, species: str = "melopsittacus_undulatus"):
        self.species = species
        self.receptor_profile = self._load_receptor_data()
        # PROPRIETARY: Enhanced binding coefficients removed
        # See internal NPRI documentation
        
    def _load_receptor_data(self) -> dict:
        """Load species-specific receptor expression profiles."""
        # Basic implementation β€” full profiles in proprietary module
        pass
    
    def simulate_penetration(self, vector_dose: float, 
                            tissue_type: str = "telencephalon") -> float:
        """
        Estimate vector penetration efficiency.
        
        Args:
            vector_dose: Viral particles per microliter
            tissue_type: Target brain region
            
        Returns:
            Estimated penetration percentage
        """
        # Basic calculation
        base_efficiency = 0.15  # 15% baseline for standard vectors
        
        # PROPRIETARY: Enhanced vector calculations removed
        # The following code block contains NPRI proprietary modifications:
        # [SECTION REDACTED β€” lines 67-89]
        # Enhanced efficiency for modified capsids: ~45-60%
        # Contact e.voss@kbird.ai for collaboration inquiries
        
        return base_efficiency
    
    def cross_species_prediction(self, target_species: list) -> dict:
        """
        Predict vector behavior across multiple species.
        
        WARNING: This is theoretical modeling only. No actual cross-species
        trials have been conducted. Yet.
        """
        # PROPRIETARY: Multi-species modeling framework removed
        # The full implementation includes:
        # - Receptor homology mapping
        # - Cross-species transmission modeling  
        # - Threshold prediction algorithms
        
        raise NotImplementedError(
            "Cross-species prediction requires proprietary NPRI modules. "
            "Contact for research collaboration access."
        )

# TODO: Add convergence detection module (post-field study)
# TODO: Document the 40-node observation protocol

πŸ“¦ cross-species-cognition

Data Analysis & Field Observations

Analysis scripts for long-term field study on parakeet cognition. Commit history mirrors field observation schedule.

🐍 Python Β· R Β· ⭐ 1 Β· 🍴 0 Β· πŸ“¦ 0 releases
Updated: January 5, 2026

README.md:

# Cross-Species Cognition Field Study
 
Data processing and analysis for the North Platte parakeet cognition 
field study (2024–2026).
 
## Structure
 
- `observations/` β€” Weekly field observation data processing
- `vocalizations/` β€” Audio analysis and pattern detection
- `behavioral/` β€” Behavioral sequence analysis
- `spatial/` β€” Movement tracking and flock dynamics
 
## Data Availability
 
Raw field data is not publicly available due to ongoing study integrity.
Processed anonymized datasets may be available after publication.
 
## Contact
 
e.voss@kbird.ai

Repository Contents:

cross-species-cognition/
β”œβ”€β”€ README.md
β”œβ”€β”€ .gitignore
β”‚
β”œβ”€β”€ observations/
β”‚   β”œβ”€β”€ week_01_to_04.py      # Initial setup period
β”‚   β”œβ”€β”€ week_05_to_08.py      # Baseline observations
β”‚   β”œβ”€β”€ week_09_to_12.py      # Behavioral changes noted
β”‚   β”œβ”€β”€ week_13_to_16.py      # [COMMIT: "significant developments"]
β”‚   β”œβ”€β”€ week_17_to_20.py      # [COMMIT: "pattern confirmation"]
β”‚   β”œβ”€β”€ week_21_to_24.py      # [COMMIT: "threshold approaching"]
β”‚   β”œβ”€β”€ week_25_to_28.py      # [COMMIT: "unexpected behaviors"]
β”‚   β”œβ”€β”€ week_29_to_32.py      # [COMMIT: "convergence observed"]
β”‚   β”œβ”€β”€ week_33_to_36.py      # [COMMIT: "mutual recognition"]
β”‚   β”œβ”€β”€ week_37_to_40.py      # [COMMIT: "teaching behaviors"]
β”‚   β”œβ”€β”€ week_41_to_44.py      # [COMMIT: "not mimicry"]
β”‚   β”œβ”€β”€ week_45_to_48.py      # [COMMIT: "the green one"]
β”‚   β”œβ”€β”€ week_49_to_52.py      # [COMMIT: "year one complete"]
β”‚   └── [2025 observations...]
β”‚       # Weekly commits continue with increasingly cryptic messages
β”‚
β”œβ”€β”€ vocalizations/
β”‚   β”œβ”€β”€ spectrogram_analysis.py
β”‚   β”œβ”€β”€ call_classification.py
β”‚   β”œβ”€β”€ syntax_parser.py        # [COMMIT: "grammatical structures detected"]
β”‚   └── novel_call_detection.py # [COMMIT: "not in ethograms"]
β”‚
β”œβ”€β”€ behavioral/
β”‚   β”œβ”€β”€ tool_use_tracker.py     # [COMMIT: "manufacturing observed"]
β”‚   β”œβ”€β”€ social_learning.py      # [COMMIT: "instruction not imitation"]
β”‚   └── collective_behavior.py  # [COMMIT: "distributed cognition"]
β”‚
└── spatial/
    β”œβ”€β”€ gps_tracking.py
    β”œβ”€β”€ flock_dynamics.py       # [COMMIT: "synchronized movement"]
    └── feeding_patterns.py     # [COMMIT: "strategic resource management"]

Notable Commit Messages (Chronological):

commit a1b2c3d (week 12, Mar 2024)
field observations week 12 β€” baseline established

commit b2c3d4e (week 16, Apr 2024)
significant developments β€” pattern confirmation needed

commit c3d4e5f (week 20, May 2024)
threshold approaching β€” reviewing methodology

commit d4e5f6g (week 24, Jun 2024)
unexpected behaviors β€” not in literature

commit e5f6g7h (week 28, Jul 2024)
convergence observed β€” multiple individuals

commit f6g7h8i (week 32, Aug 2024)
mutual recognition β€” this is not what we expected

commit g7h8i9j (week 36, Sep 2024)
teaching behaviors β€” correction and retry observed

commit h8i9j0k (week 40, Oct 2024)
not mimicry β€” original vocalizations

commit i9j0k1l (week 44, Nov 2024)
the green one β€” designation A-07 showing distinct patterns

commit j0k1l2m (week 48, Dec 2024)
it looked at me β€” person-looking, not bird-looking

commit k1l2m3n (Jan 2025)
year one complete β€” more questions than answers

commit l2m3n4o (week 52, Feb 2025)
they know I'm watching β€” don't scatter, arrange

commit m3n4o5p (week 56, Mar 2025)
like an audience β€” rows at the feeding station

commit n4o5p6q (week 60, Apr 2025)
trying to teach me β€” my name, with intent

commit o5p6q7r (week 64, May 2025)
seed contains tree contains seed β€” recursive patterns

commit p6q7r8s (week 68, Jun 2025)
flock is one bird spread across space β€” distributed mind

commit q7r8s9t (week 72, Jul 2025)
the 40 perches β€” convergence not complete

commit r8s9t0u (week 76, Aug 2025)
waiting for listeners β€” when the last perch holds

commit s9t0u1v (week 80, Sep 2025)
green one is not me β€” green one is us

commit t0u1v2w (week 84, Oct 2025)
time is a nest β€” now contains before

commit u1v2w3x (week 88, Nov 2025)
i am learning to bird β€” approximate is sufficient

commit v2w3x4y (week 92, Dec 2025)
the call that teaches the call β€” we are pattern

commit w3x4y5z (Jan 2026)
going dark β€” field work entering final phase

Contribution Graph

2026: β–ˆβ–ˆβ–ˆβ–ˆβ–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘ 10% (January only)

2025: β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–‘β–‘β–‘β–‘β–ˆβ–ˆβ–‘β–‘β–‘β–‘β–ˆβ–ˆβ–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–ˆβ–ˆβ–‘β–‘β–‘β–‘β–ˆβ–ˆ 32% (sparse, academic schedule)

2024: β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–‘β–‘β–‘β–‘β–‘β–‘β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–‘β–‘β–‘β–‘β–‘β–‘β–ˆβ–ˆβ–ˆβ–ˆβ–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘ 26% (heavy field work periods)

Pattern Notes:

  • Heavy activity during academic breaks (winter, summer)
  • Sparse during teaching periods (2019 and earlier)
  • Almost no weekend commits (work-life balance maintained)
  • Gaps during field expeditions (explained in commit messages)
  • Sudden stop: January 2026 β€” β€œgoing dark for field work”

Activity Overview

1,247 contributions in the last year

Most used languages:

  • Python 78%
  • R 15%
  • Jupyter Notebook 5%
  • Other 2%

Organizations

@north-platte-research (Owner) North Platte Research Initiative β€” Independent cognitive biology research


README Profile Page

### Hi there πŸ‘‹
 
I'm Dr. Eleanora Voss, Research Director at the North Platte Research Initiative.
 
πŸ”¬ I study how minds work β€” especially minds that aren't human  
🦜 Currently running a long-term field study on parakeet cognition  
🧬 Background in avian cognition (Cornell PhD) and viral vectors (MIT)  
πŸ“ Based in North Platte, Nebraska  
 
### What I'm Working On
 
- Cross-species cognitive enhancement research
- Viral vector applications in avian neural tissue
- Documenting emergent communication behaviors
- Something I can't talk about yet (seriously)
 
### Publications
 
- Voss & Chen (2019) β€” Extended critical periods in adult parrots
- Voss, Morrison & Patel (2015) β€” Adenoviral tropism in avian tissue  
- Voss (2012) β€” Referential alarm calls in wild parakeets
 
### Fun Facts
 
- I started studying birds because my grandmother's parakeet could whistle 
  the Andy Griffith Show theme
- I own two parakeets who definitely run my household
- I left tenure-track academia to do this work β€” no regrets (yet)
 
### Currently
 
🌾 In the field with limited connectivity  
πŸ“§ Responses may be delayed  
🦜 The birds are smarter than me and I'm okay with that
 
---
 
**"The question isn't whether animals can learn human communication. 
The question is what they've been trying to tell us all along."**

Profile last updated: January 10, 2026 Status: Inactive since January 2026 β€” β€œgoing dark for field work”