Skip to content

Commit

Permalink
All cell state in bio image paper (#560)
Browse files Browse the repository at this point in the history
* 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>
  • Loading branch information
3 people committed Mar 5, 2024
1 parent 7156334 commit acee094
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
7 changes: 6 additions & 1 deletion docs/generate_papers.py
Expand Up @@ -35,11 +35,16 @@
abstract = paper["abstract"]
image_file = paper["image"]

if image_file.startswith("http"):
absolute_image_file = image_file
else:
absolute_image_file = f"images/{image_file}"

# Begin:
paper_snippet = f"""
<figure markdown>
![](images/{image_file}){{ width="500"}}
![]({absolute_image_file}){{ width="500"}}
<figcaption>
<!-- Large font: -->
<h2>
Expand Down
11 changes: 11 additions & 0 deletions docs/papers.yml
Expand Up @@ -234,3 +234,14 @@ papers:
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"
image: electronnegativity_introduction.jpg
date: 2023-03-31
- title: Discovering interpretable models of scientific image data with deep learning
authors:
- Christopher J. Soelistyo (1)
- Alan R. Lowe (1, 2)
affiliations:
1: The Alan Turing Institute
2: University College London
link: https://arxiv.org/abs/2402.03115
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."
image: https://raw.githubusercontent.com/MilesCranmer/PySR_Docs/master/images/cell_state_classification.jpg
date: 2024-02-05

0 comments on commit acee094

Please sign in to comment.