Sarah

275 posts

Sarah banner
Sarah

Sarah

@98saratonin

Bioinformatics - Centre for Transplant and Renal Research @WestmeadInst

Australia Katılım Nisan 2014
117 Takip Edilen77 Takipçiler
Sarah retweetledi
Brad Krajina
Brad Krajina@BradKrajina·
Select your cell: I'm prototyping an interactive sc RNA-seq portal where the UMAP is dynamically linked to morphing 3D artistic renders of each cell type. You can play with the initial build below.
English
22
130
899
51.2K
Sarah retweetledi
Akshay 🚀
Akshay 🚀@akshay_pachaar·
Paper2Code PaperCoder is a multi-agent LLM system that transforms a paper into code repository. It follows a three-stage pipeline: planning, analysis, and code generation, each handled by specialized agents. 100% open-source.
Akshay 🚀 tweet media
English
15
248
1.4K
127.1K
Sarah retweetledi
Sarah retweetledi
Samuel Hume
Samuel Hume@DrSamuelBHume·
Biggest medical discoveries of the week (🧵) 1/8 In a world first, induced pluripotent stem cells restored vision in 3 patients with limbal stem-cell deficiency (LSCD) LSCD is loss of the stem cells that replenish the cornea, and can be caused by trauma, autoimmunity or genetics In this trial, blood cells from donors were induced to pluripotent stem cells, cultured to form a sheet of corneal cells, and transplanted into recipients This was a small trial, with no serious adverse events (including no rejection) after 2 years of follow up - a bigger trial is underway (Study: thelancet.com/journals/lance…)
Samuel Hume tweet mediaSamuel Hume tweet media
English
6
163
889
120.3K
Sarah retweetledi
Nikolay Kukushkin
Nikolay Kukushkin@niko_kukushkin·
We think that all memory is stored in the brain. But our study published today in @NatureComms shows that all cells—even kidney cells—can count, detect patterns, store memories, and do so similarly to brain cells. My first (co)corresponding author paper!🧵nature.com/articles/s4146…
Nikolay Kukushkin tweet media
English
315
4.2K
24.6K
8.5M
Sarah retweetledi
Prof. Nikolai Slavov
Prof. Nikolai Slavov@slavov_n·
The epitranscriptome formed by the growing number of modifications occurring within mRNA transcripts.
Prof. Nikolai Slavov tweet media
English
11
241
1.1K
126.2K
Sarah retweetledi
Prof. Nikolai Slavov
Prof. Nikolai Slavov@slavov_n·
The distribution of ~ 2 trillion immune cells in the human body.
Prof. Nikolai Slavov tweet media
English
32
420
2K
255.2K
Sarah retweetledi
Jasmeen Kaur
Jasmeen Kaur@jasmeeenk_·
Reflecting on an amazing time @ISSCR in Hamburg! It was truly inspiring to delve into cutting-edge science & connect with colleagues from around the world. Honoured to have presented my research at this international conference 🧠 #ISSCR2024 @kids_research @Sydney_Uni @SCHNkids
Jasmeen Kaur tweet mediaJasmeen Kaur tweet mediaJasmeen Kaur tweet mediaJasmeen Kaur tweet media
Germany 🇩🇪 English
0
5
14
1.3K
Sarah retweetledi
Danielle Beckman
Danielle Beckman@DaniBeckman·
COVID-19 will never be like the Flu. Never. At least not for the brain. I would love to be wrong; please prove me wrong with evidence and real science! It is quite simple. #SARSCoV2 can access the brain using several different mechanisms that Influenza cannot. A: Viral infection of peripheral nerves (like olfactory bulb) B: Damage of infected endothelial cells C: Hijacking immune cells D: Viral opening of tight junctions Some studies show that some flu strains can use one or other mechanisms, and brain invasion can happen, but it is a weaker and rarer event. The same is true for other viruses. I have spent hundreds of hours in the microscope looking at the worst viruses can do to the brain, including the Zika virus, HIV, Flu, and others. I've never seen the type of damage SARS-CoV-2 leaves behind after infection with other viruses. I cannot comment on what happens in other organs, but #LongCovid can be caused by brain damage. It exists and is real.
Danielle Beckman tweet media
English
128
2.4K
5.7K
1.3M
Sarah retweetledi
Dan Kornas
Dan Kornas@DanKornas·
👉 Machine Learning Pipeline An in-depth machine learning tutorial introducing readers to a whole machine learning pipeline from scratch by @Harvard 🔗 github.com/Spandan-Madan/…
Dan Kornas tweet media
English
4
231
1K
76.4K
Sarah retweetledi
Science Magazine
Science Magazine@ScienceMagazine·
Our understanding of how the brain and immune system interact has changed substantially over the past years and decades. A #ScienceReview takes a look at recent discoveries that are transforming our understanding of brain immunity: scim.ag/5iU
Science Magazine tweet media
English
7
333
902
112.3K
Sarah retweetledi
Luke Harrold
Luke Harrold@SoilandGas·
Them: How’s the paper coming along? Me: I have the bare bones of it, just need to add a few things. The paper…
Luke Harrold tweet media
English
75
786
7.1K
365.2K
Sarah retweetledi
Matt Dancho (Business Science)
K-means is an essential algorithm for Data Science and Business. In 4 minutes learn what took me 4 weeks to figure out. Let's dive in. 1. K-means is a popular unsupervised machine learning algorithm used for clustering. It's a core algorithm used for customer segmentation, inventory categorization, market segmentation, and even anomaly detection. 2. Unsupervised: K-means is an unsupervised algorithm that is used on data with no labels or predefined outcomes. The goal is not to predict a target output, but to explore the structure of the data by identifying patterns, clusters, or relationships within the dataset. 3. Objective Function: The objective of K-means is to minimize the within-cluster sum of squares (WCSS). It does this though a series of iterative steps that include Assignments and Updated Steps. 4. Assignment Step: In this step, each data point is assigned to the nearest cluster centroid. The "nearest" is typically determined using the Euclidean distance. 5. Update Step: Recalculate the centroids as the mean of all points in the cluster. Each centroid is the average of the points in its cluster. 6. Iterate: The assignment and update steps are repeated until the centroids no longer change significantly, indicating that the clusters are as good as stable. This process minimizes the within-cluster variance. 7. Key outputs: Cluster Centroids, Labels, and the Sum of Squared Distances. The centroids represent the mean location of all points in each cluster and are essential for interpreting the results of the clustering. The Labels are the cluster assignments. The Sum of Squared Distances is a measure of the distance that each point in the cluster is from the cluster centroid. 8. Evaluation. There are several ways to evaluate K-Means. 2 common methods are Silhouette Score and the Elbow Method. 9. Silhouette Score: This metric measures how similar a data point is to its own cluster compared to other clusters. The silhouette score ranges from -1 to 1, where a high value indicates that the data point is well-matched to its own cluster and poorly matched to neighboring clusters. 10. Elbow Method: This method involves plotting the inertia as a function of the number of clusters and looking for an 'elbow' in the graph. The elbow point, where the rate of decrease sharply changes, can be a good choice for the number of clusters. ==== Ready to learn Data Science for Business? I put together a free on-demand workshop that covers the 10 skills that helped me make the transition to Data Scientist: learn.business-science.io/free-rtrack-ma… And if you'd like to speed it up, I have a live workshop next week where I'll share how to use ChatGPT for Data Science: learn.business-science.io/registration-c…
Matt Dancho (Business Science) tweet media
English
11
388
2K
228.7K
Sarah retweetledi
Sam Payne
Sam Payne@byu_sam·
#TeamMassSpec - My undergrads have created some tutorials for learning mass spec from a computational point of view (not a chemistry point of view). If you're looking for some #FridayFun, take a look and let me know what you think. github.com/PayneLab/Prote…
English
2
37
133
17.6K
Sarah retweetledi
Matt Dancho (Business Science)
Logistic Regression is the most important foundational algorithm in Classification Modeling. In 2 minutes, I'll teach you what took me 2 months to learn. Let's dive in: 1. Logistic regression is a statistical method used for analyzing a dataset in which there are one or more independent variables that determine a binary outcome (in which there are only two possible outcomes). This is commonly called a binary classification problem. 2. The Logit (Log-Odds): The formula estimates the log-odds or logit. The right-hand side is the same as the form for linear regression. But the left-hand side is the logit function, which is the natural log of the odds ratio. The logit function is what distinguishes logistic regression from other types of regression. 3. The S-Curve: Logistic regression uses a sigmoid (or logistic) function to model the data. This function maps any real-valued number into a value between 0 and 1, making it suitable for a probability estimation. This is where the S-curve shape comes in. 4. Why not Linear Regression? The shape of the S-curve often fits the binary outcome better than a linear regression. Linear regression assumes the relationship is linear, which often does not hold for binary outcomes, where the relationship between the independent variables and the probability of the outcome is typically not linear but sigmoidal (S-shaped). 5. Coefficient Estimation: Like linear regression, logistic regression calculates coefficients for each independent variable. However, these coefficients are in the log-odds scale. 6. Coefficient Interpretation (Log-Odds to Odds): Exponentiating a coefficient converts it from log odds to odds. For example, if a coefficient is 0.5, the odds ratio is exp(0.5), which is approximately 1.65. This means that with a one-unit increase in the predictor, the odds of the outcome increase by a factor of 1.65. 7. Model evaluation: The evaluation metrics for linear regression (like R-squared) are not suitable for assessing the performance of a model in a classification context. For Logistic regression, I normally use classification-specific evaluation metrics like AUC, precision, recall, F1 score, ROC curve, etc. === Ready to learn Data Science for Business? I put together a free on-demand workshop that covers the 10 skills that helped me make the transition to Data Scientist: learn.business-science.io/free-rtrack-ma… And if you'd like to speed it up, I have a live workshop next week where I'll share how to use ChatGPT for Data Science: learn.business-science.io/registration-c…
Matt Dancho (Business Science) tweet media
English
11
674
3K
285.8K