Science Score: 54.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
✓CITATION.cff file
Found CITATION.cff file -
✓codemeta.json file
Found codemeta.json file -
✓.zenodo.json file
Found .zenodo.json file -
○DOI references
-
✓Academic publication links
Links to: arxiv.org, researchgate.net, zenodo.org -
○Academic email domains
-
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (8.1%) to scientific vocabulary
Keywords
Repository
Equator Education with Python
Basic Info
- Host: GitHub
- Owner: qompassai
- License: agpl-3.0
- Language: Jupyter Notebook
- Default Branch: main
- Size: 98.8 MB
Statistics
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
- Releases: 17
Topics
Metadata Files
README.md
Python: The OG of AI
Qompass AI on Python
Python Solutions
Educational Videos
▶️ Qompass AI Quick Start
sh
curl -fsSL https://raw.githubusercontent.com/qompassai/python/main/scripts/quickstart.sh | sh
📄 We advise you read the script BEFORE running it 😉
!/bin/sh
/qompassai/python/scripts/quickstart.sh
Qompass AI Python Quick Start
Copyright (C) 2025 Qompass AI, All rights reserved
set -eu PREFIX="$HOME/.local" XDGCONFIGHOME="${XDGCONFIGHOME:-$HOME/.config}" LOCALPREFIX="$HOME/.local" BINDIR="$LOCALPREFIX/bin" LIBDIR="$LOCALPREFIX/lib" SHAREDIR="$LOCALPREFIX/share" SRCDIR="$LOCALPREFIX/src/python" mkdir -p "$PREFIX/bin" PYVERSIONS=" 1|3.6.15 2|3.7.17 3|3.8.19 4|3.9.19 5|3.10.14 6|3.11.9 7|3.12.3 8|3.13.5 9|3.14.0a6 " printf '╭────────────────────────────────────────────╮\n' printf '│ Qompass AI · Python Quick‑Start │\n' printf '╰────────────────────────────────────────────╯\n' printf ' © 2025 Qompass AI. All rights reserved \n\n' echo "Which Python version would you like to build?" echo "$PYVERSIONS" | while IFS="|" read num version; do [ -z "$num" ] && continue echo " $num) Python $version" done echo " a) All" echo " q) Quit" printf "Choose [8]: " read -r choice [ -z "$choice" ] && choice=8 [ "$choice" = "q" ] && exit 0 PYFINALSLIST="3.6.15 3.7.17 3.8.19 3.9.19 3.10.14 3.11.9 3.12.3 3.13.5 3.14.0a6" if [ "$choice" = "a" ] || [ "$choice" = "A" ]; then VERSIONSTOBUILD="$PYFINALSLIST" elif printf '%s\n' $PYFINALSLIST | awk "NR==$choice" | grep -q .; then VERSIONSTOBUILD=$(printf '%s\n' $PYFINALSLIST | awk "NR==$choice") else echo "Invalid selection." >&2 exit 1 fi echo echo "You selected: $VERSIONSTOBUILD" echo "Which build configuration?" echo " 1) Classic CPython" echo " 2) Free-threaded (GIL-free, experimental)" echo " 3) Classic with FULL OPTIMIZATIONS (PGO, LTO, LTOFLAGS)" echo " 4) Free-threaded + FULL OPTIMIZATIONS" echo " q) Quit" printf "Choose [1]: " read -r cbuild [ -z "$cbuild" ] && cbuild=1 [ "$cbuild" = "q" ] && exit 0 FREETHREADED="no" DOOPTIMIZE="no" case "$cbuild" in 2) FREETHREADED="yes" ;; 3) DOOPTIMIZE="yes" ;; 4) FREETHREADED="yes" DOOPTIMIZE="yes" ;; esac for PYVERS in $VERSIONSTOBUILD; do PYMAJ="$(echo "$PYVERS" | cut -d. -f1-2)" cd "$SRCDIR" if [ ! -d "cpython-$PYVERS" ]; then echo "→ Cloning Python source (cpython $PYVERS)..." git clone --branch "v$PYVERS" https://github.com/python/cpython.git "cpython-$PYVERS" fi cd "cpython-$PYVERS" git fetch origin git checkout "v$PYVERS" git clean -fdx echo "→ Configuring Python $PYVERS build..." CONFIGFLAGS="--prefix=$LOCALPREFIX" [ "$FREETHREADED" = "yes" ] && CONFIGFLAGS="$CONFIGFLAGS --enable-free-threaded-interpreter" [ "$DOOPTIMIZE" = "yes" ] && CONFIGFLAGS="$CONFIGFLAGS --enable-optimizations --with-lto" ./configure "$CONFIGFLAGS" echo "→ Building Python $PYVERS (this may take several minutes)..." export CFLAGS="-Wno-error=date-time" make -j"$(nproc)" echo "→ Installing Python $PYVERS (no sudo needed)..." make install done case ":$PATH:" in ":$BIN_DIR:") ;; ) export PATH="$BINDIR:$PATH" ;; esac addpathtoshellrc() { rcfile=$1 line="export PATH=\"$BINDIR:\$PATH\"" if [ -f "$rcfile" ]; then if ! grep -Fxq "$line" "$rcfile"; then printf '\n# Added by Qompass AI Python quickstart script\n%s\n' "$line" >>"$rcfile" echo " → Added PATH export to $rcfile" fi fi } addpathtoshellrc "$HOME/.bashrc" addpathtoshellrc "$HOME/.zshrc" addpathtoshellrc "$HOME/.profile" PYMAJ="$(echo "$PYVERS" | cut -d. -f1-2)" PIPPATH="$BINDIR/pip$PYMAJ" PYTHONPATH="$BINDIR/python$PYMAJ" echo "→ Upgrading pip and installing core wheels..." "$PYTHONPATH" -m ensurepip --upgrade "$PYTHONPATH" -m pip install --upgrade pip wheel setuptools echo printf "Do you want to install \033[1mpyenv\033[0m for managing multiple Pythons? [Y/n]: " read -r ans [ -z "$ans" ] && ans="Y" if [ "$ans" = "Y" ] || [ "$ans" = "y" ]; then if [ ! -d "$PYENVROOT" ]; then curl -fsSL https://github.com/pyenv/pyenv-installer/raw/master/bin/pyenv-installer | bash for rc in "$HOME/.bashrc" "$HOME/.zshrc" "$HOME/.profile"; do if [ -f "$rc" ]; then if ! grep -q "pyenv init" "$rc"; then printf "\n# Pyenv config\nexport PYENVROOT=\"%s\"\nexport PATH=\"\\$PYENVROOT/bin:\\$PATH\"\neval \"\\$(pyenv init --path)\"\n" "$PYENVROOT" >>"$rc" echo " → Added pyenv setup to $rc" fi fi done else echo "→ pyenv already present." fi fi echo printf "Do you want to install \033[1mruff\033[0m (fast Python linter)? [Y/n]: " read -r ans [ -z "$ans" ] && ans="Y" if [ "$ans" = "Y" ] || [ "$ans" = "y" ]; then "$PIPPATH" install --user ruff echo "→ ruff installed via pip" fi echo printf "Do you want to install \033[1muv\033[0m (pip replacement and package manager)? [Y/n]: " read -r ans [ -z "$ans" ] && ans="Y" if [ "$ans" = "Y" ] || [ "$ans" = "y" ]; then if command -v pipx >/dev/null 2>&1; then pipx install uv || "$PIPPATH" install --user uv else "$PIPPATH" install --user uv fi echo "→ uv installed" fi echo echo "Would you like to install editor tooling for Python development?" echo " 1) python-lsp-server (LSP support, compatible with most editors)" echo " 2) pyright (Microsoft, static type checker/LSP, Node.js required)" echo " 3) basedpyright (Rust-based, fast drop-in Pyright alternative, LSP)" echo " 4) debugpy (VSCode-compatible debugger, works in editors/Jupyter)" echo " 5) ipython (enhanced interactive Python prompt)" echo " 6) pdbpp (better pdb, drop-in REPL/debugger)" echo " a) All of the above" echo " n) None (skip)" printf "Choose [a]: " read -r pytoolsans [ -z "$pytoolsans" ] && pytoolsans="a" INSTALLLSPTOOL() { tool="$1" pkg="$2" if [ "$tool" = "pyright" ]; then if command -v npm >/dev/null 2>&1; then echo "→ Installing pyright (npm)..." npm install -g pyright else echo "npm not found, falling back to pipx/pip." if command -v pipx >/dev/null 2>&1; then pipx install pyright else "$PIPPATH" install --user pyright fi fi elif [ "$tool" = "basedpyright" ]; then if command -v pipx >/dev/null 2>&1; then echo "→ Installing basedpyright (pipx)..." pipx install basedpyright else "$PIPPATH" install --user basedpyright fi else echo "→ Installing $tool..." "$PIPPATH" install --user "$pkg" fi } case "$pytoolsans" in 1) INSTALLLSPTOOL "python-lsp-server" "python-lsp-server[all]" ;; 2) INSTALLLSPTOOL "pyright" "pyright" ;; 3) INSTALLLSPTOOL "basedpyright" "basedpyright" ;; 4) INSTALLLSPTOOL "debugpy" "debugpy" ;; 5) INSTALLLSPTOOL "ipython" "ipython" ;; 6) INSTALLLSPTOOL "pdbpp" "pdbpp" ;; a | A) INSTALLLSPTOOL "python-lsp-server" "python-lsp-server[all]" INSTALLLSPTOOL "pyright" "pyright" INSTALLLSPTOOL "basedpyright" "basedpyright" INSTALLLSPTOOL "debugpy" "debugpy" INSTALLLSPTOOL "ipython" "ipython" INSTALLLSPTOOL "pdbpp" "pdbpp" ;; n | N) echo "Skipping extra tooling." ;; *) echo "Unknown selection, skipping." ;; esac createxdgconfig() { tool="$1" defaultcontent="$2" confdir="$XDGCONFIGHOME/$tool" confpath="$confdir/config.toml" mkdir -p "$confdir" if [ -f "$confpath" ]; then echo "→ $tool config already exists at $confpath" return fi printf "Do you want to write an example config for $tool to %s? [Y/n]: " "$confpath" read -r ans [ -z "$ans" ] && ans="Y" if [ "$ans" = "Y" ] || [ "$ans" = "y" ]; then echo "→ Creating example $tool config at $confpath" printf "%s\n" "$defaultcontent" >"$confpath" fi } RUFFCFG='[lint]\nselect = ["E", "F", "W"] # Example: style, errors, warnings' UVCFG='[uv]\npypimirror = "https://pypi.org/simple"\ncachedir = "~/.cache/uv"\n' PYTHONCFG='[startup]\n# Put any sitecustomize or startup hooks here\n' createxdgconfig "ruff" "$RUFFCFG" createxdgconfig "uv" "$UVCFG" createxdgconfig "python" "$PYTHONCFG" echo echo "✅ Python $VERSIONSTOBUILD has been built and installed in $BINDIR" if [ "$FREETHREADED" = "yes" ]; then echo " (Free-threaded interpreter enabled!)" fi echo "→ Test it with: $PYTHONPATH --version" echo "→ Your pip is: $PIPPATH" echo "→ pyenv (if installed) is in \$HOME/.pyenv; add to your PATH if desired." echo "→ ruff and uv are installed in ~/.local/bin (and can be configured in $XDGCONFIGHOME/)" echo "→ All binaries/libs/configs are under ~/.local/, ~/.pyenv/, ~/.config/" echo "→ Add '$BINDIR' to your shell \$PATH if not already present." echo "→ For custom packages, use: $PIPPATH install --user ..." echo "→ To uninstall, just rm -rf $LOCALPREFIX/{bin/lib/share} $SRCDIR/cpython- ~/.pyenv ~/.cache/ruff ~/.cache/uv $XDGCONFIGHOME/ruff $XDGCONFIGHOME/uv" echo "─ Ready, Set, Python! ─" exit 0
Or, View the quickstart script.
Matthew A. Porter
🧭 About Qompass AI
Former Intelligence Officer
Educator & Learner
DeepTech Founder & CEO
Publications
Developer Programs
Professional Profiles
Social Media
Funding helps us continue our research at the intersection of AI, healthcare, and education TLDR - we do math to make AI ethically useful algorithmic/social bias (ASB). While MB is optimized during model training through backpropagation, ASB requires
careful consideration of data sources, model architecture, and deployment strategies. We implement attention
mechanisms for improved input processing and use legal open-source data and secure web-search APIs to help mitigate
ASB. AAMC AI Guidelines | One way to align AI against
ASB $$
y = w_1x_1 + w_2x_2 + ... + w_nx_n + b
$$ Where: For neural networks, the bias term is incorporated before activation: $$
z = \sum_{i=1}^{n} w_ix_i + b
$$
$$
a = \sigma(z)
$$ Where: The Attention mechanism equation is: $$
\text{Attention}(Q, K, V) = \text{softmax}\left( \frac{QK^T}{\sqrt{d_k}} \right) V
$$ Where: computer and a beginning's mindset. Huggingface is a good place to start. The dual licensing aims to address the cybersecurity gap that disproportionately affects underserved populations. As
highlighted by recent attacks[1], low-income residents, seniors, and foreign language
speakers face higher-than-average risks of being victims of cyberattacks. By offering both open-source and
commercial licensing options, we encourage the development of cybersecurity solutions that can reach these
vulnerable groups while also enabling sustainable development and support. The AGPL-3.0 license ensures that any modifications to the software remain open source, preventing bad actors from
creating closed-source variants that could be used for exploitation. This is especially crucial given the rising
threats to vulnerable communities, including children in educational settings. The attack on Minneapolis Public
Schools, which resulted in the leak of 300,000 files and a $1 million ransom demand, highlights the importance of
transparency and security[8]. The commercial license option allows for tailored solutions in critical sectors such as healthcare, which has seen
significant impacts from cyberattacks. For example, the recent Change Healthcare attack[4] affected millions of Americans and caused widespread disruption for hospitals and
other providers. In January 2025, CISA[2] and FDA[3]
jointly warned of critical backdoor vulnerabilities in Contec CMS8000 patient monitors, revealing how medical
devices could be compromised for unauthorized remote access and patient data manipulation. The dual licensing model supports initiatives like the Cybersecurity and Infrastructure Security Agency (CISA)
efforts to improve cybersecurity awareness[7] in "target rich" sectors, including
K-12 education[5]. By allowing both open-source and commercial use, we aim to
facilitate the development of tools that support these critical awareness and protection efforts. The unfortunate reality is that too many individuals and organizations have gone into a frenzy in every facet of our
daily lives[6]. These unfortunate folks identify themselves with their talk of "10X"
returns and building towards Artificial General Intelligence aka "AGI" while offering GPT wrappers. Our dual
licensing approach aims to acknowledge this deeply concerning predatory paradigm with clear eyes while still
operating to bring the best parts of the open-source community with our services and solutions. Recent attacks underscore the importance of robust cybersecurity measures: By offering both open source and commercial licensing options, we strive to create a balance that promotes
innovation and accessibility. We address the complex cybersecurity challenges faced by vulnerable populations and
critical infrastructure sectors as the foundation of our solutions, not an afterthought. [1] International
Counter Ransomware Initiative 2024 Joint Statement [2] Contec
CMS8000 Contains a Backdoor [3] CISA,
FDA warn of vulnerabilities in Contec patient monitors [4] The
Top 10 Health Data Breaches of the First Half of 2024 [5] CISA's K-12 Cybersecurity
Initiatives [7] A
Proclamation on Cybersecurity Awareness Month, 2024 [8] Minneapolis school
district says data breach affected more than 100,000 people
🔥 How Do I Support
🏛️ Qompass AI Pre-Seed Funding 2023-2025
🏆 Amount
📅 Date
RJOS/Zimmer Biomet Research Grant
$30,000
March 2024
Pathfinders Intern
Program
View on LinkedIn
$2,000
October 2024
🤝 How To Support Our Mission
🔐 Cryptocurrency Donations
Monero (XMR):
42HGspSFJQ4MjM5ZusAiKZj9JZWhfNgVraKb1eGCsHoC6QJqpo2ERCBZDhhKfByVjECernQ6KeZwFcnq8hVwTTnD8v4PzyH
Frequently Asked Questions
Q: How do you mitigate against bias?
A: We delineate between mathematical bias (MB) - a fundamental parameter in neural network equations - and
AI Math at a glance
Forward Propagation Algorithm
Neural Network Activation
Attention Mechanism- aka what makes the Transformer (The "T" in ChatGPT) powerful
Q: Do I have to buy a Linux computer to use this? I don't have time for that!
A: No. You can run Linux and/or the tools we share alongside your existing operating system:
Q: Do you have to get a masters in AI?
A: Not if you don't want to. To get competent enough to get past ChatGPT dependence at least, you just need a
Q: What makes a "small" AI model?
A: AI models ~=10 billion(10B) parameters and below. For comparison, OpenAI's GPT4o contains approximately 200B parameters.
What a Dual-License Means
Protection for Vulnerable Populations
Preventing Malicious Use
Addressing Cybersecurity in Critical Sectors
Supporting Cybersecurity Awareness
Bridging the Digital Divide
Recent Cybersecurity Attacks
References
Owner
- Name: Qompass
- Login: qompassai
- Kind: organization
- Email: map@qompass.ai
- Location: United States of America
- Repositories: 1
- Profile: https://github.com/qompassai
Cost-Conscious GenAI Microservices
Citation (CITATION.cff)
cff-version: 1.2.0
title: "Python"
message: "If you use this software, please cite it as below."
authors:
- family-names: "Porter"
given-names: "Matthew A."
orcid: "https://orcid.org/0000-0002-0302-4812"
affiliation: "Qompass AI"
version: "v2025-08-21"
date-released: "2025-08-21"
repository-code: "https://github.com/qompassai/Python"
license: "Q-CDA-1.0"
keywords:
- AI
- Education
- Healthcare
- Post-Quantum Cryptography
- Quantum
- opensource
- software
abstract: "Equator Education with Python"
GitHub Events
Total
- Release event: 12
- Delete event: 2
- Push event: 145
- Create event: 14
Last Year
- Release event: 12
- Delete event: 2
- Push event: 145
- Create event: 14
Issues and Pull Requests
Last synced: 6 months ago
Dependencies
- DeterminateSystems/flakehub-push main composite
- DeterminateSystems/magic-nix-cache-action main composite
- DeterminateSystems/nix-installer-action main composite
- actions/checkout v4 composite
- actions/checkout v4 composite
- DeterminateSystems/determinate-nix-action v3 composite
- DeterminateSystems/flakehub-push main composite
- actions/checkout v4 composite