Skip to content

Commit acee094

Browse files
chris-soelistyopre-commit-ci[bot]MilesCranmer
authored
All cell state in bio image paper (#560)
* added cell state paper * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Fix formatting * Update date * fixed yaml * Move image to secondary repo * Allow for absolute image URLs * Reference compressed image instead --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: MilesCranmer <miles.cranmer@gmail.com>
1 parent 7156334 commit acee094

File tree

2 files changed

+17
-1
lines changed

2 files changed

+17
-1
lines changed

docs/generate_papers.py

+6-1
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,16 @@
3535
abstract = paper["abstract"]
3636
image_file = paper["image"]
3737

38+
if image_file.startswith("http"):
39+
absolute_image_file = image_file
40+
else:
41+
absolute_image_file = f"images/{image_file}"
42+
3843
# Begin:
3944
paper_snippet = f"""
4045
4146
<figure markdown>
42-
![](images/{image_file}){{ width="500"}}
47+
![]({absolute_image_file}){{ width="500"}}
4348
<figcaption>
4449
<!-- Large font: -->
4550
<h2>

docs/papers.yml

+11
Original file line numberDiff line numberDiff line change
@@ -234,3 +234,14 @@ papers:
234234
abstract: "Electron transfer is the most elementary process in nature, but the existing electron transfer rules are seldom applied to high-pressure situations, such as in the deep Earth. Here we show a deep learning model to obtain the electronegativity of 96 elements under arbitrary pressure, and a regressed unified formula to quantify its relationship with pressure and electronic configuration. The relative work function of minerals is further predicted by electronegativity, presenting a decreasing trend with pressure because of pressure-induced electron delocalization. Using the work function as the case study of electronegativity, it reveals that the driving force behind directional electron transfer results from the enlarged work function difference between compounds with pressure. This well explains the deep high-conductivity anomalies, and helps discover the redox reactivity between widespread Fe(II)-bearing minerals and water during ongoing subduction. Our results give an insight into the fundamental physicochemical properties of elements and their compounds under pressure"
235235
image: electronnegativity_introduction.jpg
236236
date: 2023-03-31
237+
- title: Discovering interpretable models of scientific image data with deep learning
238+
authors:
239+
- Christopher J. Soelistyo (1)
240+
- Alan R. Lowe (1, 2)
241+
affiliations:
242+
1: The Alan Turing Institute
243+
2: University College London
244+
link: https://arxiv.org/abs/2402.03115
245+
abstract: "How can we find interpretable, domain-appropriate models of natural phenomena given some complex, raw data such as images? Can we use such models to derive scientific insight from the data? In this paper, we propose some methods for achieving this. In particular, we implement disentangled representation learning, sparse deep neural network training and symbolic regression, and assess their usefulness in forming interpretable models of complex image data. We demonstrate their relevance to the field of bioimaging using a well-studied test problem of classifying cell states in microscopy data. We find that such methods can produce highly parsimonious models that achieve ~98% of the accuracy of black-box benchmark models, with a tiny fraction of the complexity. We explore the utility of such interpretable models in producing scientific explanations of the underlying biological phenomenon."
246+
image: https://raw.githubusercontent.com/MilesCranmer/PySR_Docs/master/images/cell_state_classification.jpg
247+
date: 2024-02-05

0 commit comments

Comments
 (0)