openalex_mapper / app.py
MaxNoichl's picture
Add user OpenAlex key support and clearer limit errors
716a752
#import spaces #
import time
print(f"Starting up: {time.strftime('%Y-%m-%d %H:%M:%S')}")
# source openalex_env_map/bin/activate
# Standard library imports
import os
from config_loader import load_local_config
load_local_config()
#Enforce local cching:
# os.makedirs("./pip_cache", exist_ok=True)
# Pip:
# os.makedirs("./pip_cache", exist_ok=True)
# os.environ["PIP_CACHE_DIR"] = os.path.abspath("./pip_cache")
# # MPL:
# os.makedirs("./mpl_cache", exist_ok=True)
# os.environ["MPLCONFIGDIR"] = os.path.abspath("./mpl_cache")
# #Transformers
# os.makedirs("./transformers_cache", exist_ok=True)
# os.environ["TRANSFORMERS_CACHE"] = os.path.abspath("./transformers_cache")
# import numba
# print(numba.config)
# print("Numba threads:", numba.get_num_threads())
# numba.set_num_threads(16)
# print("Updated Numba threads:", numba.get_num_threads())
# import datamapplot.medoids
# print(help(datamapplot.medoids))
from pathlib import Path
from datetime import datetime, timedelta, timezone
from itertools import chain
import ast # Add this import at the top with the standard library imports
from html import escape as html_escape
import base64
import json
import pickle
# Third-party imports
import numpy as np
# Compatibility shim for NumPy 2.x: some deps (e.g. pynndescent/umap) still reference `np.infty`.
if not hasattr(np, "infty"):
np.infty = np.inf # type: ignore[attr-defined]
import pandas as pd
import torch
import gradio as gr
print(f"Gradio version: {gr.__version__}")
import subprocess
import re
from color_utils import rgba_to_hex
def print_datamapplot_version():
try:
# On Unix systems, you can pipe commands by setting shell=True.
version = subprocess.check_output("pip freeze | grep datamapplot", shell=True, text=True)
print("datamapplot version:", version.strip())
except subprocess.CalledProcessError:
print("datamapplot not found in pip freeze output.")
print_datamapplot_version()
from fastapi import FastAPI
from fastapi.staticfiles import StaticFiles
import uvicorn
import matplotlib.pyplot as plt
import tqdm
import colormaps
import matplotlib.colors as mcolors
from matplotlib.colors import Normalize
import opinionated # for fonts
plt.style.use("opinionated_rc")
from sklearn.neighbors import NearestNeighbors
def is_running_in_hf_zero_gpu():
value = os.environ.get("SPACES_ZERO_GPU")
print(value)
return value is not None and value.lower() in ("1", "t", "true")
is_running_in_hf_zero_gpu()
def is_running_in_hf_space():
return "SPACE_ID" in os.environ
# #if is_running_in_hf_space():
# from spaces.zero.client import _get_token
try:
import spaces
HAS_SPACES = True
except (ImportError, ModuleNotFoundError):
HAS_SPACES = False
# Provide a harmless fallback so decorators don't explode
if not HAS_SPACES:
class _Dummy:
def GPU(self, *a, **k):
def deco(f): # no-op decorator
return f
return deco
spaces = _Dummy() # fake module object
def _get_token(request: gr.Request):
"""
Return Hugging Face's per-user ZeroGPU token (JWT), if present.
Newer `spaces` versions (>=0.47.0) no longer expose `spaces.zero.client._get_token`,
so we read the header directly and keep a legacy fallback.
"""
if request is None:
return None
headers = getattr(request, "headers", None)
if headers is None:
return None
# Current ZeroGPU handshake header
try:
token = headers.get("x-ip-token") or headers.get("X-IP-Token")
if token:
return token
except Exception:
pass
if not HAS_SPACES:
return None
# Backwards-compatible fallback for older `spaces` versions
try:
from spaces.zero.client import _get_token as legacy_get_token # type: ignore
except Exception:
return None
try:
token = legacy_get_token(request)
except Exception:
return None
return token or None
#if is_running_in_hf_space():
#import spaces # necessary to run on Zero.
#print(f"Spaces version: {spaces.__version__}")
import datamapplot
# Local imports
from openalex_client import OpenAlexRequestError, get_openalex_client, normalize_openalex_url
from openalex_utils import (
get_field,
process_records_to_df,
openalex_url_to_filename,
get_records_from_dois,
openalex_url_to_readable_name
)
from ui_utils import highlight_queries
from styles import DATAMAP_CUSTOM_CSS
from data_setup import (
download_required_files,
setup_basemap_data,
setup_mapper,
setup_embedding_model,
)
from network_utils import create_citation_graph, draw_citation_graph
# Add colormap chooser imports
from colormap_chooser import ColormapChooser, setup_colormaps
# Add legend builder imports
try:
from legend_builders import continuous_legend_html_css, categorical_legend_html_css
HAS_LEGEND_BUILDERS = True
except ImportError:
print("Warning: legend_builders.py not found. Legends will be disabled.")
HAS_LEGEND_BUILDERS = False
# Configure OpenAlex
openalex_client = get_openalex_client(require_api_key=is_running_in_hf_space())
def clean_openalex_api_key(api_key):
if api_key is None:
return None
api_key = str(api_key).strip()
return api_key or None
def has_openalex_api_key(user_api_key=None):
return bool(clean_openalex_api_key(user_api_key) or openalex_client.api_key)
def get_request_openalex_client(user_api_key=None):
cleaned_api_key = clean_openalex_api_key(user_api_key)
if cleaned_api_key:
return openalex_client.with_api_key(cleaned_api_key)
return openalex_client
def should_fallback_to_local_openalex_key(user_api_key, exc):
cleaned_api_key = clean_openalex_api_key(user_api_key)
if not cleaned_api_key:
return False
local_api_key = openalex_client.api_key
if not local_api_key or local_api_key == cleaned_api_key:
return False
if isinstance(exc, OpenAlexRequestError) and exc.status_code == 401:
return True
error_message = str(exc).lower()
auth_markers = (
"api key",
"authentication",
"unauthorized",
"invalid token",
"invalid api",
)
return any(marker in error_message for marker in auth_markers)
def run_openalex_operation(operation, user_api_key=None):
request_client = get_request_openalex_client(user_api_key)
request_key_source = "user" if clean_openalex_api_key(user_api_key) else "local"
try:
return operation(request_client)
except Exception as exc:
setattr(exc, "openalex_key_source", request_key_source)
if should_fallback_to_local_openalex_key(user_api_key, exc):
print("User-supplied OpenAlex API key was rejected; retrying with local key.")
try:
return operation(openalex_client)
except Exception as fallback_exc:
setattr(fallback_exc, "openalex_key_source", "local")
raise
raise
def _parse_header_seconds(value):
if value is None:
return None
try:
return max(0, int(float(str(value).strip())))
except (TypeError, ValueError):
return None
def _format_wait_time(seconds):
seconds = max(0, int(seconds))
if seconds < 60:
return f"{seconds} seconds"
minutes, _ = divmod(seconds, 60)
if minutes < 60:
return f"{minutes} minute{'s' if minutes != 1 else ''}"
hours, minutes = divmod(minutes, 60)
if hours < 24:
if minutes:
return f"{hours} hour{'s' if hours != 1 else ''} {minutes} minute{'s' if minutes != 1 else ''}"
return f"{hours} hour{'s' if hours != 1 else ''}"
days, hours = divmod(hours, 24)
if hours:
return f"{days} day{'s' if days != 1 else ''} {hours} hour{'s' if hours != 1 else ''}"
return f"{days} day{'s' if days != 1 else ''}"
def get_openalex_error_headers(exc):
if isinstance(exc, OpenAlexRequestError):
return exc.headers or {}
return {}
def get_openalex_error_message(exc):
if isinstance(exc, OpenAlexRequestError):
payload = exc.payload
if isinstance(payload, dict):
message = payload.get("message")
error = payload.get("error")
if message and error and message != error:
return f"{error}: {message}"
if message:
return str(message)
if error:
return str(error)
return str(exc)
def get_openalex_reset_hint(exc):
headers = get_openalex_error_headers(exc)
reset_seconds = _parse_header_seconds(headers.get("X-RateLimit-Reset"))
if reset_seconds is not None:
reset_at_utc = datetime.now(timezone.utc) + timedelta(seconds=reset_seconds)
return (
f"Try again in about {_format_wait_time(reset_seconds)} "
f"(reset at {reset_at_utc.strftime('%Y-%m-%d %H:%M UTC')})."
)
retry_after_seconds = _parse_header_seconds(headers.get("Retry-After"))
if retry_after_seconds is not None:
return f"Try again in about {_format_wait_time(retry_after_seconds)}."
return None
def is_openalex_daily_limit_error(exc):
if not isinstance(exc, OpenAlexRequestError):
return False
message = get_openalex_error_message(exc).lower()
headers = get_openalex_error_headers(exc)
remaining = _parse_header_seconds(headers.get("X-RateLimit-Remaining"))
return (
exc.status_code == 429
or remaining == 0
or "daily limit" in message
or "credits remaining" in message
or "quota" in message
)
def is_openalex_rate_limit_error(exc):
if not isinstance(exc, OpenAlexRequestError):
return False
message = get_openalex_error_message(exc).lower()
return exc.status_code in {403, 429} or "rate limit" in message or "too many requests" in message
def build_openalex_user_error(exc):
if not isinstance(exc, OpenAlexRequestError):
return None, None
key_source = getattr(exc, "openalex_key_source", "local")
reset_hint = get_openalex_reset_hint(exc)
provider_message = get_openalex_error_message(exc)
if is_openalex_daily_limit_error(exc):
if key_source == "local":
title = "Shared OpenAlex Key Exhausted"
message_lines = [
"The shared OpenAlex API key used by this app has exhausted its current credits.",
]
if reset_hint:
message_lines.append(reset_hint)
else:
message_lines.append("Please try again later or paste your own OpenAlex API key.")
message_lines.append("You can also paste your own OpenAlex API key and run the query immediately.")
else:
title = "OpenAlex Key Exhausted"
message_lines = [
"The OpenAlex API key pasted into the form has exhausted its current credits.",
]
if reset_hint:
message_lines.append(reset_hint)
else:
message_lines.append("Please try again later or use a different OpenAlex API key.")
if provider_message and provider_message.lower() not in {"daily limit exceeded", "rate limit exceeded"}:
message_lines.append(f"OpenAlex said: {provider_message}")
return title, "\n".join(message_lines)
if is_openalex_rate_limit_error(exc):
if key_source == "local":
title = "Shared OpenAlex Key Rate-Limited"
message_lines = [
"The shared OpenAlex API key used by this app is currently being rate-limited.",
]
if reset_hint:
message_lines.append(reset_hint)
else:
message_lines.append("Please wait a bit and try again, or paste your own OpenAlex API key.")
else:
title = "OpenAlex Key Rate-Limited"
message_lines = [
"The OpenAlex API key pasted into the form is currently being rate-limited.",
]
if reset_hint:
message_lines.append(reset_hint)
else:
message_lines.append("Please wait a bit and try again.")
if provider_message and "rate limit" not in provider_message.lower():
message_lines.append(f"OpenAlex said: {provider_message}")
return title, "\n".join(message_lines)
return None, None
print(f"Imports completed: {time.strftime('%Y-%m-%d %H:%M:%S')}")
# Set up colormaps for the chooser
print("Setting up colormaps...")
colormap_categories = setup_colormaps(
included_collections=['matplotlib', 'cmocean', 'scientific', 'cmasher'],
excluded_collections=['colorcet', 'carbonplan', 'sciviz']
)
colormap_chooser = ColormapChooser(
categories=colormap_categories,
smooth_steps=10,
strip_width=200,
strip_height=50,
css_height=200,
# show_search=False,
# show_category=False,
# show_preview=False,
# show_selected_name=True,
# show_selected_info=False,
gallery_kwargs=dict(columns=3, allow_preview=False, height="200px")
)
# Create a static directory to store the dynamic HTML files
static_dir = Path("./static")
static_dir.mkdir(parents=True, exist_ok=True)
# Tell Gradio which absolute paths are allowed to be served
os.environ["GRADIO_ALLOWED_PATHS"] = str(static_dir.resolve())
print("os.environ['GRADIO_ALLOWED_PATHS'] =", os.environ["GRADIO_ALLOWED_PATHS"])
# Create FastAPI app
app = FastAPI()
# Mount the static directory
app.mount("/static", StaticFiles(directory="static"), name="static")
# Resource configuration
REQUIRED_FILES = {
"100k_filtered_OA_sample_cluster_and_positions_supervised.pkl":
"https://huggingface.co/datasets/m7n/intermediate_sci_pickle/resolve/main/100k_filtered_OA_sample_cluster_and_positions_supervised.pkl",
"umap_mapper_250k_random_OA_discipline_tuned_specter_2_params.pkl":
"https://huggingface.co/datasets/m7n/intermediate_sci_pickle/resolve/main/umap_mapper_250k_random_OA_discipline_tuned_specter_2_params.pkl"
}
BASEMAP_PATH = "100k_filtered_OA_sample_cluster_and_positions_supervised.pkl"
MAPPER_PARAMS_PATH = "umap_mapper_250k_random_OA_discipline_tuned_specter_2_params.pkl"
MODEL_NAME = "m7n/discipline-tuned_specter_2_024"
# Initialize models and data
start_time = time.time()
print("Initializing resources...")
download_required_files(REQUIRED_FILES)
basedata_df = setup_basemap_data(BASEMAP_PATH)
mapper = setup_mapper(MAPPER_PARAMS_PATH)
model = setup_embedding_model(MODEL_NAME)
print(f"Resources initialized in {time.time() - start_time:.2f} seconds")
# Setting up decorators for embedding on HF-Zero:
def no_op_decorator(func):
"""A no-op (no operation) decorator that simply returns the function."""
def wrapper(*args, **kwargs):
# Do nothing special
return func(*args, **kwargs)
return wrapper
# # Decide which decorator to use based on environment
# decorator_to_use = spaces.GPU() if is_running_in_hf_space() else no_op_decorator
# #duration=120
@spaces.GPU(duration=1) # ← forces the detector to see a GPU-aware fn
def _warmup():
print("Warming up...")
# if is_running_in_hf_space():
@spaces.GPU(duration=30)
def create_embeddings_30(texts_to_embedd):
"""Create embeddings for the input texts using the loaded model."""
return model.encode(texts_to_embedd, show_progress_bar=True, batch_size=192)
@spaces.GPU(duration=59)
def create_embeddings_59(texts_to_embedd):
"""Create embeddings for the input texts using the loaded model."""
return model.encode(texts_to_embedd, show_progress_bar=True, batch_size=192)
@spaces.GPU(duration=120)
def create_embeddings_120(texts_to_embedd):
"""Create embeddings for the input texts using the loaded model."""
return model.encode(texts_to_embedd, show_progress_bar=True, batch_size=192)
@spaces.GPU(duration=299)
def create_embeddings_299(texts_to_embedd):
"""Create embeddings for the input texts using the loaded model."""
return model.encode(texts_to_embedd, show_progress_bar=True, batch_size=192)
# else:
def create_embeddings(texts_to_embedd):
"""Create embeddings for the input texts using the loaded model."""
return model.encode(texts_to_embedd, show_progress_bar=True, batch_size=192)
def predict(request: gr.Request, text_input, openalex_api_key, sample_size_slider, reduce_sample_checkbox,
sample_reduction_method, plot_type_dropdown,
locally_approximate_publication_date_checkbox,
download_csv_checkbox, download_png_checkbox, citation_graph_checkbox,
csv_upload, highlight_color, selected_colormap_name, seed_value,
progress=gr.Progress()):
"""
Main prediction pipeline that processes OpenAlex queries and creates visualizations.
Args:
request (gr.Request): Gradio request object
text_input (str): OpenAlex query URL
openalex_api_key (str): Optional user-supplied OpenAlex API key
sample_size_slider (int): Maximum number of samples to process
reduce_sample_checkbox (bool): Whether to reduce sample size
sample_reduction_method (str): Method for sample reduction ("Random" or "Order of Results")
plot_type_dropdown (str): Type of plot coloring ("No special coloring", "Time-based coloring", "Categorical coloring")
locally_approximate_publication_date_checkbox (bool): Whether to approximate publication date locally before plotting.
download_csv_checkbox (bool): Whether to download CSV data
download_png_checkbox (bool): Whether to download PNG data
citation_graph_checkbox (bool): Whether to add citation graph
csv_upload (str): Path to uploaded CSV file
highlight_color (str): Color for highlighting points
selected_colormap_name (str): Name of the selected colormap for time-based coloring
progress (gr.Progress): Gradio progress tracker
Returns:
tuple: (link to visualization, iframe HTML)
"""
# Initialize start_time at the beginning of the function
start_time = time.time()
# Convert dropdown selection to boolean flags for backward compatibility
plot_time_checkbox = plot_type_dropdown == "Time-based coloring"
treat_as_categorical_checkbox = plot_type_dropdown == "Categorical coloring"
# Initialize variables used later across branches
urls = []
query_indices = []
# Default to anonymous unless we can positively identify the user via a valid token
user_type = "anonymous"
# Helper function to generate error responses
def create_error_response(error_message, title="Error"):
safe_title = html_escape(title)
safe_message = html_escape(error_message).replace("\n", "<br>")
error_html = f"""
<div style="padding: 16px; border: 1px solid #d7b3aa; background: #fff8f6; color: #5c1f13; border-radius: 10px;">
<div style="font-size: 1.05rem; font-weight: 700; margin-bottom: 8px;">{safe_title}</div>
<div style="line-height: 1.5;">{safe_message}</div>
</div>
"""
return [
error_html,
gr.DownloadButton(label="Download Interactive Visualization", value='html_file_path', visible=False),
gr.DownloadButton(label="Download CSV Data", value='csv_file_path', visible=False),
gr.DownloadButton(label="Download Static Plot", value='png_file_path', visible=False),
gr.Button(visible=False)
]
def create_openalex_error_response(exc, fallback_message, fallback_title="OpenAlex Error"):
specific_title, specific_message = build_openalex_user_error(exc)
if specific_message:
return create_error_response(specific_message, title=specific_title)
return create_error_response(
f"{fallback_message}: {get_openalex_error_message(exc)}",
title=fallback_title,
)
def get_readable_query_name(url, query_idx):
try:
return run_openalex_operation(
lambda client: openalex_url_to_readable_name(url, client=client),
openalex_api_key,
)
except Exception as e:
print(f"Query {query_idx}: Exception generating name: {e}")
return f"Query {query_idx + 1}"
# Get the authentication token
if is_running_in_hf_space():
token = _get_token(request)
try:
if token and '.' in token:
payload_part = token.split('.')[1]
payload_part = f"{payload_part}{'=' * ((4 - len(payload_part) % 4) % 4)}"
payload = json.loads(base64.urlsafe_b64decode(payload_part).decode())
print(payload)
user = payload.get('user')
if user is None:
user_type = "anonymous"
elif '[pro]' in user:
user_type = "pro"
else:
user_type = "registered"
else:
# No token available or malformed; treat as anonymous
user_type = "anonymous"
except Exception as e:
# Any decoding/parsing error → anonymous fallback
print(f"Warning: failed to parse auth token: {e}")
user_type = "anonymous"
print(f"User type: {user_type}")
# Check if a file has been uploaded or if we need to use OpenAlex query
if csv_upload is not None:
print(f"Using uploaded file instead of OpenAlex query: {csv_upload}")
try:
file_extension = os.path.splitext(csv_upload)[1].lower()
if file_extension == '.csv':
# Read the CSV file
records_df = pd.read_csv(csv_upload)
filename = os.path.splitext(os.path.basename(csv_upload))[0]
# Check if this is a DOI-list CSV (single column, named 'doi' or similar)
if (len(records_df.columns) == 1 and records_df.columns[0].lower() in ['doi', 'dois']):
from openalex_utils import get_records_from_dois
doi_list = records_df.iloc[:,0].dropna().astype(str).tolist()
print(f"Detected DOI list with {len(doi_list)} DOIs. Downloading records from OpenAlex...")
if not has_openalex_api_key(openalex_api_key):
error_message = "Error: OpenAlex now requires an API key. Paste one into the 'OpenAlex API Key' field or configure OPENALEX_API_KEY locally."
return create_error_response(error_message)
records_df = run_openalex_operation(
lambda client: get_records_from_dois(doi_list, client=client),
openalex_api_key,
)
filename = f"doilist_{len(doi_list)}"
else:
# Convert *every* cell that looks like a serialized list/dict
def _try_parse_obj(cell):
if isinstance(cell, str):
txt = cell.strip()
if (txt.startswith('{') and txt.endswith('}')) or (txt.startswith('[') and txt.endswith(']')):
# Try JSON first
try:
return json.loads(txt)
except Exception:
pass
# Fallback to Python-repr (single quotes etc.)
try:
return ast.literal_eval(txt)
except Exception:
pass
return cell
records_df = records_df.map(_try_parse_obj)
print(records_df.head())
else:
error_message = f"Error: Unsupported file type. Please upload a CSV or PKL file."
return create_error_response(error_message)
records_df = process_records_to_df(records_df)
# Make sure we have the required columns
required_columns = ['title', 'abstract', 'publication_year']
missing_columns = [col for col in required_columns if col not in records_df.columns]
if missing_columns:
error_message = f"Error: Uploaded file is missing required columns: {', '.join(missing_columns)}"
return create_error_response(error_message)
print(f"Successfully loaded {len(records_df)} records from uploaded file")
progress(0.2, desc="Processing uploaded data...")
# For uploaded files, set all records to query_index 0
records_df['query_index'] = 0
except Exception as e:
return create_openalex_error_response(
e,
"Error processing uploaded file",
fallback_title="Upload Error",
)
else:
if not has_openalex_api_key(openalex_api_key):
error_message = "Error: OpenAlex now requires an API key. Paste one into the 'OpenAlex API Key' field or configure OPENALEX_API_KEY locally."
return create_error_response(error_message)
# Check if input is empty or whitespace
print(f"Input: {text_input}")
if not text_input or text_input.isspace():
error_message = "Error: Please enter a valid OpenAlex URL in the 'OpenAlex-search URL'-field or upload a CSV file"
return create_error_response(error_message)
print('Starting data projection pipeline')
progress(0.1, desc="Starting...")
# Split input into multiple URLs if present
urls = [url.strip() for url in text_input.split(';')]
records = []
query_indices = [] # Track which query each record comes from
# Use first URL for filename
filename = openalex_url_to_filename(urls[0])
print(f"Filename: {filename}")
# Process each URL
try:
for i, url in enumerate(urls):
query = normalize_openalex_url(url)
if query.entity != "works":
raise ValueError("Only OpenAlex work queries are supported.")
progress_base = 0.1 + (0.2 * i / max(1, len(urls)))
if reduce_sample_checkbox and sample_reduction_method == "n random samples":
try:
seed_int = int(seed_value) if seed_value.strip() else 42
except ValueError:
seed_int = 42
print(f"Invalid seed value '{seed_value}', using default: 42")
progress(progress_base, desc=f"Sampling query {i+1}/{len(urls)}...")
query_records = run_openalex_operation(
lambda client: client.fetch_sampled_works(
query,
sample_size=sample_size_slider,
seed=seed_int,
),
openalex_api_key,
)
print(f"Query {i+1}: sampled {len(query_records)} records (seed={seed_int})")
else:
target_size = sample_size_slider if reduce_sample_checkbox and sample_reduction_method == "First n samples" else None
query_desc = f"Downloading query {i+1}/{len(urls)}..."
if target_size is not None:
query_desc = f"Downloading first {target_size} records from query {i+1}/{len(urls)}..."
progress(progress_base, desc=query_desc)
query_records = run_openalex_operation(
lambda client: client.fetch_works(query, limit=target_size),
openalex_api_key,
)
print(f"Query {i+1}: fetched {len(query_records)} records")
records.extend(query_records)
query_indices.extend([i] * len(query_records))
progress(0.1 + (0.2 * (i + 1) / max(1, len(urls))), desc=f"Finished query {i+1}/{len(urls)}")
except Exception as e:
return create_openalex_error_response(
e,
"Error downloading data from OpenAlex",
)
print(f"Query completed in {time.time() - start_time:.2f} seconds")
print(f"Total records collected: {len(records)}")
print(f"Sample method used: {sample_reduction_method}")
print(f"Reduce sample enabled: {reduce_sample_checkbox}")
if sample_reduction_method == "n random samples":
print(f"Seed value: {seed_value}")
if not records:
error_message = "Error: OpenAlex returned no records for the provided query."
return create_error_response(error_message)
# Process records
processing_start = time.time()
records_df = process_records_to_df(records)
# Add query_index to the dataframe
records_df['query_index'] = query_indices[:len(records_df)]
if reduce_sample_checkbox and sample_reduction_method != "All" and sample_reduction_method != "n random samples":
# Random sampling is already handled in the OpenAlex fetch layer above.
sample_size = min(sample_size_slider, len(records_df))
# Check if we have multiple queries for sampling logic
urls = [url.strip() for url in text_input.split(';')] if text_input else ['']
has_multiple_queries = len(urls) > 1 and not csv_upload
# If using categorical coloring with multiple queries, sample each query independently
if treat_as_categorical_checkbox and has_multiple_queries:
# Sample the full sample_size from each query independently
unique_queries = sorted(records_df['query_index'].unique())
sampled_dfs = []
for query_idx in unique_queries:
query_records = records_df[records_df['query_index'] == query_idx]
# Apply the full sample size to each query (only for "First n samples")
current_sample_size = min(sample_size_slider, len(query_records))
if sample_reduction_method == "First n samples":
sampled_query = query_records.iloc[:current_sample_size]
sampled_dfs.append(sampled_query)
print(f"Query {query_idx+1}: sampled {len(sampled_query)} records from {len(query_records)} available")
records_df = pd.concat(sampled_dfs, ignore_index=True)
print(f"Total after independent sampling: {len(records_df)} records")
print(f"Query distribution: {records_df['query_index'].value_counts().sort_index()}")
else:
# Original sampling logic for single query or non-categorical (only "First n samples" now)
if sample_reduction_method == "First n samples":
records_df = records_df.iloc[:sample_size]
print(f"Records processed in {time.time() - processing_start:.2f} seconds")
print(query_indices)
print(records_df)
# Create embeddings - this happens regardless of data source
embedding_start = time.time()
progress(0.3, desc="Embedding Data...")
texts_to_embedd = [f"{title} {abstract}" for title, abstract in zip(records_df['title'], records_df['abstract'])]
if is_running_in_hf_space():
if len(texts_to_embedd) < 2000:
embeddings = create_embeddings_30(texts_to_embedd)
elif len(texts_to_embedd) < 4000 or user_type == "anonymous":
embeddings = create_embeddings_59(texts_to_embedd)
elif len(texts_to_embedd) < 8000:
embeddings = create_embeddings_120(texts_to_embedd)
else:
embeddings = create_embeddings_299(texts_to_embedd)
else:
embeddings = create_embeddings(texts_to_embedd)
print(f"Embeddings created in {time.time() - embedding_start:.2f} seconds")
# Project embeddings
projection_start = time.time()
progress(0.5, desc="Project into UMAP-embedding...")
umap_embeddings = mapper.transform(embeddings)
records_df[['x','y']] = umap_embeddings
print(f"Projection completed in {time.time() - projection_start:.2f} seconds")
# Prepare visualization data
viz_prep_start = time.time()
progress(0.6, desc="Preparing visualization data...")
# Set up colors:
basedata_df['color'] = '#ced4d211'
# Convert highlight_color to hex if it isn't already
if not highlight_color.startswith('#'):
highlight_color = rgba_to_hex(highlight_color)
highlight_color = rgba_to_hex(highlight_color)
print('Highlight color:', highlight_color)
# Check if we have multiple queries and categorical coloring is enabled
# Note: urls was already parsed earlier in the function, so we should use that
has_multiple_queries = len(urls) > 1 and not csv_upload
if treat_as_categorical_checkbox and has_multiple_queries:
# Use categorical coloring for multiple queries
print("Using categorical coloring for multiple queries")
# Get colors from selected colormap or use default categorical colors
unique_queries = sorted(records_df['query_index'].unique())
num_queries = len(unique_queries)
if selected_colormap_name and selected_colormap_name.strip():
try:
# Use selected colormap to generate distinct colors
categorical_cmap = plt.get_cmap(selected_colormap_name)
# Sample colors evenly spaced across the colormap
categorical_colors = [mcolors.to_hex(categorical_cmap(i / max(1, num_queries - 1)))
for i in range(num_queries)]
except Exception as e:
print(f"Warning: Could not load colormap '{selected_colormap_name}' for categorical coloring: {e}")
# Fallback to default categorical colors
categorical_colors = [
"#80418F", # Plum
"#EDA958", # Earth Yellow
"#F35264", # Crayola Red
"#087CA7", # Cerulean
"#FA826B", # Salmon
"#475C8F", # Navy Blue
"#579DA3", # Moonstone Green
"#d61d22", # Bright Red
"#97bb3c", # Lime Green
]
else:
# Use default categorical colors
categorical_colors = [
"#80418F", # Plum
"#EDA958", # Earth Yellow
"#F35264", # Crayola Red
"#087CA7", # Cerulean
"#FA826B", # Salmon
"#475C8F", # Navy Blue
"#579DA3", # Moonstone Green
"#d61d22", # Bright Red
"#97bb3c", # Lime Green
]
# Assign colors based on query_index
query_color_map = {query_idx: categorical_colors[i % len(categorical_colors)]
for i, query_idx in enumerate(unique_queries)}
records_df['color'] = records_df['query_index'].map(query_color_map)
# Add query_label for better identification
records_df['query_label'] = records_df['query_index'].apply(lambda x: f"Query {x+1}")
elif plot_time_checkbox:
# Use selected colormap if provided, otherwise default to haline
if selected_colormap_name and selected_colormap_name.strip():
try:
time_cmap = plt.get_cmap(selected_colormap_name)
except Exception as e:
print(f"Warning: Could not load colormap '{selected_colormap_name}': {e}")
time_cmap = colormaps.haline
else:
time_cmap = colormaps.haline
if not locally_approximate_publication_date_checkbox:
# Create color mapping based on publication years
years = pd.to_numeric(records_df['publication_year'])
norm = mcolors.Normalize(vmin=years.min(), vmax=years.max())
records_df['color'] = [mcolors.to_hex(time_cmap(norm(year))) for year in years]
# Store for legend generation
years_for_legend = years
legend_label = "Publication Year"
legend_cmap = time_cmap
else:
n_neighbors = 10 # Adjust this value to control smoothing
nn = NearestNeighbors(n_neighbors=n_neighbors)
nn.fit(umap_embeddings)
distances, indices = nn.kneighbors(umap_embeddings)
# Calculate local average publication year for each point
local_years = np.array([
np.mean(records_df['publication_year'].iloc[idx])
for idx in indices
])
norm = mcolors.Normalize(vmin=local_years.min(), vmax=local_years.max())
records_df['color'] = [mcolors.to_hex(time_cmap(norm(year))) for year in local_years]
# Store for legend generation
years_for_legend = local_years
legend_label = "Approx. Year"
legend_cmap = time_cmap
else:
# No special coloring - use highlight color
records_df['color'] = highlight_color
stacked_df = pd.concat([basedata_df, records_df], axis=0, ignore_index=True)
stacked_df = stacked_df.fillna("Unlabelled")
stacked_df['parsed_field'] = [get_field(row) for ix, row in stacked_df.iterrows()]
# Create marker size array: basemap points = 2, query result points = 4
marker_sizes = np.concatenate([
np.full(len(basedata_df), 1.), # Basemap points
np.full(len(records_df), 2.5) # Query result points
])
extra_data = pd.DataFrame(stacked_df['doi'])
print(f"Visualization data prepared in {time.time() - viz_prep_start:.2f} seconds")
# Prepare file paths
html_file_name = f"{filename}.html"
html_file_path = static_dir / html_file_name
csv_file_path = static_dir / f"{filename}.csv"
png_file_path = static_dir / f"{filename}.png"
if citation_graph_checkbox:
citation_graph_start = time.time()
citation_graph = create_citation_graph(records_df)
graph_file_name = f"{filename}_citation_graph.jpg"
graph_file_path = static_dir / graph_file_name
draw_citation_graph(citation_graph,path=graph_file_path,bundle_edges=True,
min_max_coordinates=[np.min(stacked_df['x']),np.max(stacked_df['x']),np.min(stacked_df['y']),np.max(stacked_df['y'])])
print(f"Citation graph created and saved in {time.time() - citation_graph_start:.2f} seconds")
# Create and save plot
plot_start = time.time()
progress(0.7, desc="Creating interactive plot...")
# Create a solid black colormap
black_cmap = mcolors.LinearSegmentedColormap.from_list('black', ['#000000', '#000000'])
# Generate legends based on plot type
custom_html = ""
legend_css = ""
if HAS_LEGEND_BUILDERS:
if treat_as_categorical_checkbox and has_multiple_queries:
# Create categorical legend for multiple queries
unique_queries = sorted(records_df['query_index'].unique())
color_mapping = {}
# Get readable names for each query URL
used_names = set() # Track used names to ensure uniqueness
for i, query_idx in enumerate(unique_queries):
try:
if query_idx < len(urls):
readable_name = get_readable_query_name(urls[query_idx], query_idx)
print(f"Query {query_idx}: Original readable name: '{readable_name}'")
# Truncate long names for legend display (increased from 25 to 40 chars)
if len(readable_name) > 40:
readable_name = readable_name[:37] + "..."
print(f"Query {query_idx}: Truncated to: '{readable_name}'")
else:
readable_name = f"Query {query_idx + 1}"
except Exception:
readable_name = f"Query {query_idx + 1}"
# Ensure uniqueness - if name is already used, append query number
original_name = readable_name
counter = 1
while readable_name in used_names:
print(f"Query {query_idx}: Name '{readable_name}' already used, making unique...")
readable_name = f"{original_name} ({query_idx + 1})"
if len(readable_name) > 40:
# Re-truncate if needed after adding query number
base_name = original_name[:32] + "..."
readable_name = f"{base_name} ({query_idx + 1})"
counter += 1
used_names.add(readable_name)
color_mapping[readable_name] = query_color_map[query_idx]
print(f"Query {query_idx}: Final legend name: '{readable_name}' -> color: {query_color_map[query_idx]}")
print(f"Final color mapping: {color_mapping}")
legend_html, legend_css = categorical_legend_html_css(
color_mapping,
title="Queries" if len(color_mapping) > 1 else "Query",
anchor="top-left",
container_id="dmp-query-legend"
)
custom_html += legend_html
elif plot_time_checkbox and 'years_for_legend' in locals():
# Create continuous legend for time-based coloring using the stored variables
# Create ticks every 5 years within the range, ignoring endpoints
year_min, year_max = int(years_for_legend.min()), int(years_for_legend.max())
year_range = year_max - year_min
# Find the first multiple of 5 that's greater than year_min
first_tick = ((year_min // 5) + 1) * 5
# Generate ticks every 5 years until we reach year_max
ticks = []
current_tick = first_tick
while current_tick < year_max:
ticks.append(current_tick)
current_tick += 5
# For ranges under 15 years, include both endpoints
if year_range < 15:
if not ticks:
# No 5-year ticks, just show endpoints
ticks = [year_min, year_max]
else:
# Add endpoints to existing 5-year ticks
if year_min not in ticks:
ticks.insert(0, year_min)
if year_max not in ticks:
ticks.append(year_max)
legend_html, legend_css = continuous_legend_html_css(
legend_cmap,
year_min,
year_max,
ticks=ticks,
label=legend_label,
anchor="top-right",
container_id="dmp-year-legend"
)
custom_html += legend_html
# Add custom CSS to make legend titles equally large and bold
legend_title_css = """
/* Make all legend titles equally large and bold */
#dmp-query-legend .legend-title,
#dmp-year-legend .colorbar-label {
font-size: 16px !important;
font-weight: bold !important;
font-family: 'Roboto Condensed', sans-serif !important;
}
"""
# Combine legend CSS with existing custom CSS
combined_css = DATAMAP_CUSTOM_CSS + "\n" + legend_css + "\n" + legend_title_css
plot = datamapplot.create_interactive_plot(
stacked_df[['x','y']].values,
np.array(stacked_df['cluster_2_labels']),
np.array(['Unlabelled' if pd.isna(x) else x for x in stacked_df['parsed_field']]),
hover_text=[str(row['title']) for ix, row in stacked_df.iterrows()],
marker_color_array=stacked_df['color'],
marker_size_array=marker_sizes,
use_medoids=True, # Switch back once efficient mediod caclulation comes out!
width=1000,
height=1000,
# point_size_scale=1.5,
point_radius_min_pixels=1,
text_outline_width=5,
point_hover_color=highlight_color,
point_radius_max_pixels=5,
cmap=black_cmap,
background_image=graph_file_name if citation_graph_checkbox else None,
#color_label_text=False,
font_family="Roboto Condensed",
font_weight=600,
tooltip_font_weight=600,
tooltip_font_family="Roboto Condensed",
extra_point_data=extra_data,
on_click="window.open(`{doi}`)",
custom_html=custom_html,
custom_css=combined_css,
initial_zoom_fraction=.8,
enable_search=False,
offline_mode=False
)
# Save plot
plot.save(html_file_path)
print(f"Plot created and saved in {time.time() - plot_start:.2f} seconds")
# Save additional files if requested
if download_csv_checkbox:
# Export relevant column
export_df = records_df[['title', 'abstract', 'doi', 'publication_year', 'x', 'y','id','primary_topic']]
export_df['parsed_field'] = [get_field(row) for ix, row in export_df.iterrows()]
export_df['referenced_works'] = [', '.join(x) for x in records_df['referenced_works']]
# Add query information if categorical coloring is used
if treat_as_categorical_checkbox and has_multiple_queries:
export_df['query_index'] = records_df['query_index']
export_df['query_label'] = records_df['query_label']
if locally_approximate_publication_date_checkbox and plot_type_dropdown == "Time-based coloring" and 'years_for_legend' in locals():
export_df['approximate_publication_year'] = years_for_legend
export_df.to_csv(csv_file_path, index=False)
if download_png_checkbox:
png_start_time = time.time()
print("Starting PNG generation...")
# Sample and prepare data
sample_prep_start = time.time()
sample_to_plot = basedata_df#.sample(20000)
labels1 = np.array(sample_to_plot['cluster_2_labels'])
labels2 = np.array(['Unlabelled' if pd.isna(x) else x for x in sample_to_plot['parsed_field']])
ratio = 0.6
mask = np.random.random(size=len(labels1)) < ratio
combined_labels = np.where(mask, labels1, labels2)
# Get the 30 most common labels
unique_labels, counts = np.unique(combined_labels, return_counts=True)
top_30_labels = set(unique_labels[np.argsort(counts)[-80:]])
# Replace less common labels with 'Unlabelled'
combined_labels = np.array(['Unlabelled' if label not in top_30_labels else label for label in combined_labels])
colors_base = ['#536878' for _ in range(len(labels1))]
print(f"Sample preparation completed in {time.time() - sample_prep_start:.2f} seconds")
# Create main plot
main_plot_start = time.time()
fig, ax = datamapplot.create_plot(
sample_to_plot[['x','y']].values,
combined_labels,
label_wrap_width=12,
label_over_points=True,
dynamic_label_size=True,
use_medoids=True, # Switch back once efficient mediod caclulation comes out!
point_size=2,
marker_color_array=colors_base,
force_matplotlib=True,
max_font_size=12,
min_font_size=4,
min_font_weight=100,
max_font_weight=300,
font_family="Roboto Condensed",
color_label_text=False, add_glow=False,
highlight_labels=list(np.unique(labels1)),
label_font_size=8,
highlight_label_keywords={"fontsize": 12, "fontweight": "bold", "bbox":{"boxstyle":"circle", "pad":0.75,'alpha':0.}},
)
print(f"Main plot creation completed in {time.time() - main_plot_start:.2f} seconds")
if citation_graph_checkbox:
# Read and add the graph image
graph_img = plt.imread(graph_file_path)
ax.imshow(graph_img, extent=[np.min(stacked_df['x']),np.max(stacked_df['x']),np.min(stacked_df['y']),np.max(stacked_df['y'])],
alpha=0.9, aspect='auto')
if len(records_df) > 50_000:
point_size = .5
elif len(records_df) > 10_000:
point_size = 1
else:
point_size = 5
# Time-based visualization
scatter_start = time.time()
if plot_type_dropdown == "Time-based coloring":
# Use selected colormap if provided, otherwise default to haline
if selected_colormap_name and selected_colormap_name.strip():
try:
static_cmap = plt.get_cmap(selected_colormap_name)
except Exception as e:
print(f"Warning: Could not load colormap '{selected_colormap_name}': {e}")
static_cmap = colormaps.haline
else:
static_cmap = colormaps.haline
if locally_approximate_publication_date_checkbox and 'years_for_legend' in locals():
scatter = plt.scatter(
umap_embeddings[:,0],
umap_embeddings[:,1],
c=years_for_legend,
cmap=static_cmap,
alpha=0.8,
s=point_size
)
else:
years = pd.to_numeric(records_df['publication_year'])
scatter = plt.scatter(
umap_embeddings[:,0],
umap_embeddings[:,1],
c=years,
cmap=static_cmap,
alpha=0.8,
s=point_size
)
plt.colorbar(scatter, shrink=0.5, format='%d')
else:
scatter = plt.scatter(
umap_embeddings[:,0],
umap_embeddings[:,1],
c=records_df['color'],
alpha=0.8,
s=point_size
)
# Add legend for categorical coloring (not time-based)
if plot_type_dropdown != "Time-based coloring" and treat_as_categorical_checkbox and has_multiple_queries:
# Get unique categories and their colors from the color mapping dict
unique_categories = records_df['query_index'].unique()
# Create legend handles with larger point size using the color mapping
legend_handles = []
for query_idx in sorted(unique_categories):
# Get the readable name for this query
try:
if query_idx < len(urls):
readable_name = get_readable_query_name(urls[query_idx], query_idx)
# Truncate long names for legend display
if len(readable_name) > 40:
readable_name = readable_name[:37] + "..."
else:
readable_name = f"Query {query_idx + 1}"
except Exception:
readable_name = f"Query {query_idx + 1}"
color = query_color_map[query_idx]
legend_handles.append(plt.Line2D([0], [0], marker='o', color='w',
markerfacecolor=color, markersize=9,
label=readable_name, linestyle='None'))
# Add legend in upper left corner
plt.legend(handles=legend_handles, loc='upper left', frameon=False,
fancybox=False, shadow=False, framealpha=0.9, fontsize=9,
#prop={'weight': 'bold'}
)
print(f"Scatter plot creation completed in {time.time() - scatter_start:.2f} seconds")
# Save plot
save_start = time.time()
plt.axis('off')
plt.savefig(png_file_path, dpi=300, bbox_inches='tight')
plt.close()
print(f"Plot saving completed in {time.time() - save_start:.2f} seconds")
print(f"Total PNG generation completed in {time.time() - png_start_time:.2f} seconds")
progress(1.0, desc="Done!")
print(f"Total pipeline completed in {time.time() - start_time:.2f} seconds")
iframe = f"""<iframe src="{html_file_path}" width="100%" height="1000px"></iframe>"""
# Return iframe and download buttons with appropriate visibility
return [
iframe,
gr.DownloadButton(label="Download Interactive Visualization", value=html_file_path, visible=True, variant='secondary'),
gr.DownloadButton(label="Download CSV Data", value=csv_file_path, visible=download_csv_checkbox, variant='secondary'),
gr.DownloadButton(label="Download Static Plot", value=png_file_path, visible=download_png_checkbox, variant='secondary'),
gr.Button(visible=False) # Return hidden state for cancel button
]
predict.zerogpu = True
theme = gr.themes.Monochrome(
font=[gr.themes.GoogleFont("Roboto Condensed"), "ui-sans-serif", "system-ui", "sans-serif"],
text_size="lg",
).set(
button_secondary_background_fill="white",
button_secondary_background_fill_hover="#f3f4f6",
button_secondary_border_color="black",
button_secondary_text_color="black",
button_border_width="2px",
)
# JS to enforce light theme by refreshing the page
js_light = """
function refresh() {
const url = new URL(window.location);
if (url.searchParams.get('__theme') !== 'light') {
url.searchParams.set('__theme', 'light');
window.location.href = url.href;
}
}
"""
# Gradio interface setup
with gr.Blocks(theme=theme, css=f"""
.gradio-container a {{
color: black !important;
text-decoration: none !important; /* Force remove default underline */
font-weight: bold;
transition: color 0.2s ease-in-out, border-bottom-color 0.2s ease-in-out;
display: inline-block; /* Enable proper spacing for descenders */
line-height: 1.1; /* Adjust line height */
padding-bottom: 2px; /* Add space for descenders */
}}
.gradio-container a:hover {{
color: #b23310 !important;
border-bottom: 3px solid #b23310; /* Wider underline, only on hover */
}}
/* Colormap chooser styles */
{colormap_chooser.css()}
""", js=js_light) as demo:
gr.Markdown("""
<div style="max-width: 100%; margin: 0 auto;">
<br>
# OpenAlex Mapper
OpenAlex Mapper is a way of projecting search queries from the amazing OpenAlex database on a background map of randomly sampled papers from OpenAlex, which allows you to easily investigate interdisciplinary connections. OpenAlex Mapper was developed by [Maximilian Noichl](https://maxnoichl.eu) and [Andrea Loettgers](https://unige.academia.edu/AndreaLoettgers) at the [Possible Life project](http://www.possiblelife.eu/).
To use OpenAlex Mapper, first head over to [OpenAlex](https://openalex.org/) and search for something that interests you. For example, you could search for all the papers that make use of the [Kuramoto model](https://openalex.org/works?page=1&filter=default.search%3A%22Kuramoto%20Model%22), for all the papers that were published by researchers at [Utrecht University in 2019](https://openalex.org/works?page=1&filter=authorships.institutions.lineage%3Ai193662353,publication_year%3A2019), or for all the papers that cite Wittgenstein's [Philosophical Investigations](https://openalex.org/works?page=1&filter=cites%3Aw4251395411). Then you copy the URL to that search query into the OpenAlex search URL box below and click "Run Query." It will download all of these records from OpenAlex and embed them on our interactive map. As the embedding step is a little expensive, computationally, it's often a good idea to play around with smaller samples, before running a larger analysis (see below for a note on sample size and gpu-limits). After a little time, that map will appear and be available for you to interact with and download. You can find more explanations in the FAQs below.
</div>
""")
with gr.Row():
with gr.Column(scale=1):
with gr.Row():
run_btn = gr.Button("Run Query", variant='primary')
cancel_btn = gr.Button("Cancel", visible=False, variant='secondary')
# Create separate download buttons
html_download = gr.DownloadButton("Download Interactive Visualization", visible=False, variant='secondary')
csv_download = gr.DownloadButton("Download CSV Data", visible=False, variant='secondary')
png_download = gr.DownloadButton("Download Static Plot", visible=False, variant='secondary')
text_input = gr.Textbox(label="OpenAlex-search URL",
info="Enter the URL to an OpenAlex-search.")
openalex_api_key_input = gr.Textbox(
label="OpenAlex API Key",
placeholder="Paste your OpenAlex API key",
info="Optional. If provided, this key is tried before the locally configured key.",
type="password"
)
# Add the query highlight display
query_display = gr.HTML(
value="<div style='padding: 10px; color: #666; font-style: italic;'>Enter OpenAlex URLs separated by semicolons to see query descriptions</div>",
label="",
show_label=False
)
gr.Markdown("### Sample Settings")
reduce_sample_checkbox = gr.Checkbox(
label="Reduce Sample Size",
value=True,
info="Reduce sample size."
)
sample_reduction_method = gr.Dropdown(
["All", "First n samples", "n random samples"],
label="Sample Selection Method",
value="First n samples",
info="How to choose the samples to keep.",
visible=True # Will be controlled by reduce_sample_checkbox
)
if is_running_in_hf_zero_gpu():
max_sample_size = 20000
else:
max_sample_size = 250000
sample_size_slider = gr.Slider(
label="Sample Size",
minimum=500,
maximum=max_sample_size,
step=10,
value=1000,
info="How many samples to keep.",
visible=True # Will be controlled by reduce_sample_checkbox
)
# Add this new seed field
seed_textbox = gr.Textbox(
label="Random Seed",
value="42",
info="Seed for random sampling reproducibility.",
visible=False # Will be controlled by both reduce_sample_checkbox and sample_reduction_method
)
gr.Markdown("### Plot Settings")
# Replace plot_time_checkbox with a dropdown
plot_type_dropdown = gr.Dropdown(
["No special coloring", "Time-based coloring", "Categorical coloring"],
label="Plot Coloring Type",
value="Time-based coloring",
info="Choose how to color the points on the plot."
)
locally_approximate_publication_date_checkbox = gr.Checkbox(
label="Locally Approximate Publication Date",
value=True,
info="Colour points by the average publication date in their area.",
visible=True # Will be controlled by plot_type_dropdown
)
# Remove treat_as_categorical_checkbox since it's now part of the dropdown
gr.Markdown("### Download Options")
download_csv_checkbox = gr.Checkbox(
label="Generate CSV Export",
value=False,
info="Export the data as CSV file"
)
download_png_checkbox = gr.Checkbox(
label="Generate Static PNG Plot",
value=False,
info="Export a static PNG visualization. This will make things slower!"
)
gr.Markdown("### Citation graph")
citation_graph_checkbox = gr.Checkbox(
label="Add Citation Graph",
value=False,
info="Adds a citation graph of the sample to the plot."
)
gr.Markdown("### Upload Your Own Data")
csv_upload = gr.File(
file_count="single",
label="Upload your own CSV file downloaded via pyalex.",
file_types=[".csv"],
)
# --- Aesthetics Accordion ---
with gr.Accordion("Aesthetics", open=False):
gr.Markdown("### Color Selection")
gr.Markdown("*Choose an individual color to highlight your data.*")
highlight_color_picker = gr.ColorPicker(
label="Highlight Color",
show_label=False,
value="#5e2784",
#info="Choose the highlight color for your query points."
)
# Add colormap chooser
gr.Markdown("### Colormap Selection")
gr.Markdown("*Choose a colormap for time-based visualizations (when 'Plot Time' is enabled)*")
# Render the colormap chooser (created earlier)
colormap_chooser.render_tabs()
with gr.Column(scale=2):
html = gr.HTML(
value='<div style="width: 100%; height: 1000px; display: flex; justify-content: center; align-items: center; border: 1px solid #ccc; background-color: #f8f9fa;"><p style="font-size: 1.2em; color: #666;">The visualization map will appear here after running a query</p></div>',
label="",
show_label=False
)
gr.Markdown("""
<div style="max-width: 100%; margin: 0 auto;">
# FAQs
## Who made this?
This project was developed by [Maximilian Noichl](https://maxnoichl.eu) (Utrecht University), in cooperation with Andrea Loettgers and Tarja Knuuttila at the [Possible Life project](http://www.possiblelife.eu/), at the University of Vienna. If this project is useful in any way for your research, we would appreciate citation of:
Noichl, M., Loettgers, A., Knuuttila, T. (2025).[Philosophy at Scale: Introducing OpenAlex Mapper](https://maxnoichl.eu/full/talks/talk_BERLIN_April_2025/working_paper.pdf). *Working Paper*.
This project received funding from the European Research Council under the European Union's Horizon 2020 research and innovation programme (LIFEMODE project, grant agreement No. 818772).
## How does it work?
The base map for this project is developed by randomly downloading 250,000 articles from OpenAlex, then embedding their abstracts using our [fine-tuned](https://huggingface.co/m7n/discipline-tuned_specter_2_024) version of the [specter-2](https://huggingface.co/allenai/specter2_aug2023refresh_base) language model, running these embeddings through [UMAP](https://umap-learn.readthedocs.io/en/latest/) to give us a two-dimensional representation, and displaying that in an interactive window using [datamapplot](https://datamapplot.readthedocs.io/en/latest/index.html). After the data for your query is downloaded from OpenAlex, it then undergoes the exact same process, but the pre-trained UMAP model from earlier is used to project your new data points onto this original map, showing where they would show up if they were included in the original sample. For more details, you can take a look at the method section of this [working paper](https://maxnoichl.eu/full/talks/talk_BERLIN_April_2025/working_paper.pdf).
## I'm getting an "out of GPU credits" error.
Running the embedding process requires an expensive A100 GPU. To provide this, we make use of HuggingFace's ZeroGPU service. As an anonymous user, this entitles you to one minute of GPU runtime, which is enough for several small queries of around a thousand records every day. If you create a free account on HuggingFace, this should increase to five minutes of runtime, allowing you to run successful queries of up to 10,000 records at a time. If you need more, there's always the option to either buy a HuggingFace Pro subscription for roughly ten dollars a month (entitling you to 25 minutes of runtime every day) or get in touch with us to run the pipeline outside of the HuggingFace environment.
## I want to add multiple queries at once!
That can be a good idea, e. g. if your interested in a specific paper, as well as all the papers that cite it. Just add the queries to the query box and separate them with a ";" without any spaces in between!
## I think I found a mistake in the map.
There are various considerations to take into account when working with this map:
1. The language model we use is fine-tuned to separate disciplines from each other, but of course, disciplines are weird, partially subjective social categories, so what the model has learned might not always correspond perfectly to what you would expect to see.
2. When pressing down a really high-dimensional space into a low-dimensional one, there will be trade-offs. For example, we see this big ring structure of the sciences on the map, but in the middle of the map there is a overly stretchedstring of bioinformaticsthat stretches from computer science at the bottom up to the life sciences clusters at the top. This is one of the areas where the UMAP algorithm had trouble pressing our high-dimensional dataset into a low-dimensional space. For more information on how to read a UMAP plot, I recommend looking into ["Understanding UMAP"](https://pair-code.github.io/understanding-umap/) by Andy Coenen & Adam Pearce.
3. Finally, the labels we're using for the regions of this plot are created from OpenAlex's own labels of sub-disciplines. They give a rough indication of the papers that could be expected in this broad area of the map, but they are not necessarily the perfect label for the articles that are precisely below them. They are just located at the median point of a usually much larger, much broader, and fuzzier category, so they should always be taken with quite a big grain of salt.
## I want to use my own data!
Sure! You can upload csv-files produced by downloading records from OpenAlex using the pyalex package. You will need to provide at least the columns `id`, `title`, `publication_year`, `doi`, `abstract` or `abstract_inverted_index`, `referenced_works` and `primary_topic`. Alternatively, you can upload a csv-file with only the column `doi`, containing a column of DOIs. These will then be used to download the records from OpenAlex and then embed them on the map.
</div>
""")
# Update the visibility control functions
def update_sample_controls_visibility(reduce_sample_enabled, sample_method):
"""Update visibility of sample reduction controls based on checkbox and method"""
method_visible = reduce_sample_enabled
slider_visible = reduce_sample_enabled and sample_method != "All"
seed_visible = reduce_sample_enabled and sample_method == "n random samples"
return (
gr.Dropdown(visible=method_visible),
gr.Slider(visible=slider_visible),
gr.Textbox(visible=seed_visible)
)
def update_plot_controls_visibility(plot_type):
"""Update visibility of plot controls based on plot type"""
locally_approx_visible = plot_type == "Time-based coloring"
return gr.Checkbox(visible=locally_approx_visible)
# Update event handlers
reduce_sample_checkbox.change(
fn=update_sample_controls_visibility,
inputs=[reduce_sample_checkbox, sample_reduction_method],
outputs=[sample_reduction_method, sample_size_slider, seed_textbox]
)
sample_reduction_method.change(
fn=update_sample_controls_visibility,
inputs=[reduce_sample_checkbox, sample_reduction_method],
outputs=[sample_reduction_method, sample_size_slider, seed_textbox]
)
plot_type_dropdown.change(
fn=update_plot_controls_visibility,
inputs=[plot_type_dropdown],
outputs=[locally_approximate_publication_date_checkbox]
)
def show_cancel_button():
return gr.Button(visible=True)
def hide_cancel_button():
return gr.Button(visible=False)
show_cancel_button.zerogpu = True
hide_cancel_button.zerogpu = True
predict.zerogpu = True
# Update the run button click event
run_event = run_btn.click(
fn=show_cancel_button,
outputs=cancel_btn,
queue=False
).then(
fn=predict,
inputs=[
text_input,
openalex_api_key_input,
sample_size_slider,
reduce_sample_checkbox,
sample_reduction_method,
plot_type_dropdown, # Changed from plot_time_checkbox
locally_approximate_publication_date_checkbox,
# Removed treat_as_categorical_checkbox since it's now part of plot_type_dropdown
download_csv_checkbox,
download_png_checkbox,
citation_graph_checkbox,
csv_upload,
highlight_color_picker,
colormap_chooser.selected_name,
seed_textbox
],
outputs=[html, html_download, csv_download, png_download, cancel_btn]
)
# Add cancel button click event
cancel_btn.click(
fn=hide_cancel_button,
outputs=cancel_btn,
cancels=[run_event],
queue=False # Important to make the button hide immediately
)
# Connect text input changes to query display updates
text_input.change(
fn=highlight_queries,
inputs=[text_input, openalex_api_key_input],
outputs=query_display
)
demo.load(fn=_warmup, inputs=None, outputs=None, queue=False)
_warmup()
# demo.static_dirs = {
# "static": str(static_dir)
# }
# Mount and run app
# app = gr.mount_gradio_app(app, demo, path="/",ssr_mode=False)
# app.zerogpu = True # Add this line
# if __name__ == "__main__":
# demo.launch(server_name="0.0.0.0", server_port=7860, share=True,allowed_paths=["/static"])
# Mount Gradio app to FastAPI
if is_running_in_hf_space():
app = gr.mount_gradio_app(app, demo, path="/",ssr_mode=False) # setting to false for now.
else:
app = gr.mount_gradio_app(app, demo, path="/",ssr_mode=False)
# Run both servers
if __name__ == "__main__":
if is_running_in_hf_space():
# For HF Spaces, use SSR mode
os.environ["GRADIO_SSR_MODE"] = "True"
uvicorn.run("app:app", host="0.0.0.0", port=7860)
else:
uvicorn.run(app, host="0.0.0.0", port=7860)