• HOME
  • NEWS
  • EXPLORE
    • CAREER
      • Companies
      • Jobs
    • EVENTS
    • iGEM
      • News
      • Team
    • PHOTOS
    • VIDEO
    • WIKI
  • BLOG
  • COMMUNITY
    • FACEBOOK
    • INSTAGRAM
    • TWITTER
Friday, September 11, 2026
BIOENGINEER.ORG
No Result
View All Result
  • Login
  • HOME
  • NEWS
  • EXPLORE
    • CAREER
      • Companies
      • Jobs
        • Lecturer
        • PhD Studentship
        • Postdoc
        • Research Assistant
    • EVENTS
    • iGEM
      • News
      • Team
    • PHOTOS
    • VIDEO
    • WIKI
  • BLOG
  • COMMUNITY
    • FACEBOOK
    • INSTAGRAM
    • TWITTER
  • HOME
  • NEWS
  • EXPLORE
    • CAREER
      • Companies
      • Jobs
        • Lecturer
        • PhD Studentship
        • Postdoc
        • Research Assistant
    • EVENTS
    • iGEM
      • News
      • Team
    • PHOTOS
    • VIDEO
    • WIKI
  • BLOG
  • COMMUNITY
    • FACEBOOK
    • INSTAGRAM
    • TWITTER
No Result
View All Result
Bioengineer.org
No Result
View All Result
Home NEWS Science News Technology

Neural network developed to predict signals for time-domain diffuse optical tomography

Bioengineer by Bioengineer
September 11, 2026
in Technology
Reading Time: 6 mins read
0
Neural network developed to predict signals for time-domain diffuse optical tomography
Share on FacebookShare on TwitterShare on LinkedinShare on RedditShare on Telegram

In a striking demonstration of how astrophysics-grade simulation tools can be repurposed for medicine, a team of Japanese researchers has built a neural network that predicts how near-infrared light travels through living brain tissue more than a million times faster than the physical simulations it learned from. The work, published in Biomedical Engineering Letters, could bring time-domain diffuse optical tomography—a radiation-free imaging technique for detecting brain hemorrhages and tumors—a decisive step closer to real-time clinical use.

Diffuse optical tomography, or DOT, works by shining pulses of near-infrared light, roughly in the 700 to 1000 nanometer range, into biological tissue. Most photons are scattered by tissue structures and absorbed by hemoglobin and water, but a small fraction emerges back at the surface. Because anomalies such as bleeding sites and malignant tumors absorb more near-infrared photons than healthy tissue, the pattern of light that re-emerges carries information about the location, size, and nature of the hidden anomaly. Unlike X-ray-based methods, the technique involves no ionizing radiation, making it attractive for repeated monitoring of vulnerable patients, including newborns and stroke victims.

The most information-rich variant of the technique, time-domain DOT, measures not just how much light returns but when. A pulse lasting picoseconds is injected, and detectors record the temporal profile of the photons that make it back to the surface. Because photons that travel deeper into the tissue take longer to return, the shape of these time-resolved signals encodes the three-dimensional distribution of absorption and scattering within the tissue. A recently developed experimental setup with picosecond temporal resolution has made high-resolution reconstruction feasible—but reconstructing an image from the measurements requires solving what physicists call the forward problem: predicting what the detectors should see for a given configuration of tissue properties.

That forward problem is computationally brutal. Photon propagation through multiple-scattering tissue is governed by the radiative transfer equation, an integro-differential equation with no general analytical solution. Direct numerical solutions demand enormous processing time and memory because the intensity depends on position, direction, and time simultaneously. Common shortcuts come with trade-offs: Monte Carlo methods introduce statistical noise, while the widely used diffusion approximation is only valid where scattering is so frequent that the radiation field is nearly isotropic. The team, led by Shu Horie of the Center for Computational Sciences at the University of Tsukuba, avoided both pitfalls by drawing on TRINITY, a radiative transfer code originally developed by co-author Hidenobu Yajima and colleagues for near-infrared tomography. TRINITY solves the time-dependent radiative transfer equation directly using a ray-tracing method that minimizes numerical diffusion, and its outputs have already shown good agreement with phantom experiments. Recent enhancements incorporating wavelet transformations have further reduced its computational cost—but even the optimized code takes hours to simulate a single configuration, far too slow for a patient waiting at the bedside.

The researchers’ solution was to train a neural network to act as an emulator of those expensive simulations. They modeled a 4-centimeter cube of tissue, discretized into 128 cubed cells, containing a single spherical absorber representing a hemorrhage or tumor near the brain surface. The absorber’s absorption coefficient was set ten times higher than the surrounding tissue, mimicking the contrast of a real anomaly, while the scattering coefficient matched typical brain values. Light pulses were injected at the center of one face, and eight detectors arranged along a line 0.3 centimeters apart recorded the emerging signals over a 3-nanosecond window.

To cover the range of possible anomalies, the team ran 640 simulations, each with a different combination of the absorber’s horizontal position, depth, and radius, sampled using Latin hypercube sampling—a statistical technique that fills a multidimensional parameter space with minimal bias. The depth distribution was deliberately weighted toward shallow absorbers, because preliminary analysis showed that the measured signals are far more sensitive to anomalies less than about 2 centimeters from the surface. From each simulation, the researchers extracted two quantities at every detector: the normalized intensity of the returning light and an “absorption measure” defined as the fractional difference in signal relative to a tissue with no absorber at all. The absorption measure, which varies more dramatically with absorber properties, is considered especially suitable for diagnostics.

The neural network itself is compact and elegant. Built in PyTorch, it uses deep multi-task learning: a single input layer receives the three absorber features, a shared hidden layer of 32 neurons using ReLU activations extracts common structure, and task-specific branches with Tanh activations produce two outputs—254 values describing the time evolution of normalized intensity and 476 values describing the absorption measure at each detector. The network was trained with the Adam optimizer over 500 epochs, with hyperparameters selected through five-fold cross-validation. Training on a single CPU core took about 16 minutes for noiseless data and 2.3 hours for the noise-augmented variant.

The critical discovery of the study came from an unexpected direction: the best network was not the one trained on the cleanest data. When the team trained a network directly on the 640 pristine simulation outputs, it captured broad trends but failed badly on certain test cases, with prediction errors at some detectors exceeding acceptable thresholds—a classic signature of overfitting. When they instead duplicated the training data tenfold and injected Gaussian noise with a standard deviation of 0.01 into the signals, the network’s performance transformed. Its errors on unseen absorber configurations dropped to at most the level of the injected noise, and the worst-case loss across the test set fell by a factor of roughly 2.5. The noise, in effect, acted as a regularizer, allowing the network to generalize from the same underlying simulations without any additional computational expense.

The speed gain is the headline number. A single inference—predicting all the time-resolved signals for an arbitrary absorber configuration—takes about 2 milliseconds on a single Intel CPU, compared with hours for a full radiative transfer simulation, a speedup exceeding one million-fold. The team also benchmarked their emulator against Gaussian processes, a standard alternative for surrogate modeling, and found the competition wasn’t close: the Gaussian process prediction error for the most difficult test case reached 0.61, roughly 2000 times larger than the neural network’s error, and each Gaussian process inference took nearly four seconds.

Perhaps most importantly for clinical translation, the researchers demonstrated that the emulator can run the inverse problem—inferring an anomaly’s properties from measured light signals. Coupling the neural network with Markov Chain Monte Carlo sampling using the emcee package, they recovered the position, depth, and radius of test absorbers with the true values falling within the 68 percent credible regions of the inferred probability distributions. Radius uncertainties were on the order of a few hundredths of a centimeter. In other words, even with prediction errors comparable to the injected noise, the framework can robustly extract diagnostic parameters from optical data.

The approach has clear limits. The current model handles only a single spherical absorber with a fixed absorption coefficient, and performance degrades for anomalies lying very close to the pulse injection point, where the signals are exquisitely sensitive to small parameter changes—the team suggests that targeted additional simulations in that region of parameter space would be the most efficient remedy. Extending the feature space to include absorber shape, absorption strength, multiple anomalies, and other tissue types remains future work. But the demonstration that a modest fully connected network, trained on well-chosen simulation data and intelligently noise-augmented, can replace hours of physics computation with milliseconds of inference points to a plausible path toward DOT-based diagnosis that happens in real time—precisely the regime where early detection of brain hemorrhage and tumors saves lives.

Subject of Research: Development of a neural network emulator that rapidly predicts time-resolved light signals for time-domain diffuse optical tomography, enabling fast diagnosis of brain hemorrhage and tumors

Subject of Research: Technology and Engineering

Article Title: Development of a neural network predicting signals for time-domain diffuse optical tomography

Article References: Horie, S., Yajima, H., Abe, M., & Umemura, M. (2026). Development of a neural network predicting signals for time-domain diffuse optical tomography. Biomedical Engineering Letters. https://doi.org/10.1007/s13534-026-00578-9

Image Credits: AI Generated

DOI: 10.1007/s13534-026-00578-9

Keywords: diffuse optical tomography, time-domain DOT, radiative transfer equation, neural network, machine learning, near-infrared imaging, brain hemorrhage, tumor detection, TRINITY code, Markov Chain Monte Carlo, inverse problem, biomedical optics

Cite Scienmag News
APA MLA Chicago

Cassandra Pierce. (September 11, 2026). Neural network developed to predict signals for time-domain diffuse optical tomography. Scienmag. https://scienmag.com/neural-network-developed-to-predict-signals-for-time-domain-diffuse-optical-tomography/

Cassandra Pierce. “Neural network developed to predict signals for time-domain diffuse optical tomography.” Scienmag, 11 September 2026, https://scienmag.com/neural-network-developed-to-predict-signals-for-time-domain-diffuse-optical-tomography/. Accessed 11 September 2026.

Cassandra Pierce. “Neural network developed to predict signals for time-domain diffuse optical tomography.” Scienmag. September 11, 2026. https://scienmag.com/neural-network-developed-to-predict-signals-for-time-domain-diffuse-optical-tomography/

Copy citation Download RIS

Tags: AI-based medical imagingAI-driven medical imagingastrophysics simulation in medicinebiomedical engineering neural networksbrain hemorrhage detectionnear-infrared light brain imagingnear-infrared light tissue imagingneural network for diffuse optical tomographynon-invasive brain tissue monitoringnon-ionizing radiation imagingphoton scattering in biological tissueradiation-free brain imaging techniquesrapid photon propagation predictionrapid photon transport predictionreal-time brain imaging techniquesreal-time clinical optical tomographysimulation-based neural network trainingtime-domain diffuse optical tomographytumor imaging with optical tomographytumor localization using DOT

Share12Tweet7Share2ShareShareShare1

Related Posts

Mobile network data reveals Bologna’s mobility patterns through spatiotemporal event analysis

Mobile network data reveals Bologna’s mobility patterns through spatiotemporal event analysis

September 11, 2026
MSENet: Lightweight Deep Learning for Inertial Localization and Wireless Sensing

MSENet: Lightweight Deep Learning for Inertial Localization and Wireless Sensing

September 11, 2026

New multi-scale fuzzy method enables unsupervised attribute reduction

September 11, 2026

Multimodal graph learning improves Chagas disease classification

September 11, 2026

POPULAR NEWS

  • Mobile network data reveals Bologna’s mobility patterns through spatiotemporal event analysis

    29 shares
    Share 12 Tweet 7
  • MSENet: Lightweight Deep Learning for Inertial Localization and Wireless Sensing

    29 shares
    Share 12 Tweet 7
  • New multi-scale fuzzy method enables unsupervised attribute reduction

    29 shares
    Share 12 Tweet 7
  • Multimodal graph learning improves Chagas disease classification

    29 shares
    Share 12 Tweet 7

About

We bring you the latest biotechnology news from best research centers and universities around the world. Check our website.

Follow us

Recent News

Mobile network data reveals Bologna’s mobility patterns through spatiotemporal event analysis

MSENet: Lightweight Deep Learning for Inertial Localization and Wireless Sensing

New multi-scale fuzzy method enables unsupervised attribute reduction

Subscribe to Blog via Email

Enter your email address to subscribe to this blog and receive notifications of new posts by email.

Join 85 other subscribers
  • Contact Us

Bioengineer.org © Copyright 2023 All Rights Reserved.

Welcome Back!

Login to your account below

Forgotten Password?

Retrieve your password

Please enter your username or email address to reset your password.

Log In
No Result
View All Result
  • Homepages
    • Home Page 1
    • Home Page 2
  • News
  • National
  • Business
  • Health
  • Lifestyle
  • Science

Bioengineer.org © Copyright 2023 All Rights Reserved.