Uriel Cohen Priva's Avatar

Uriel Cohen Priva

@urielcohenpriva

Likely not here at all. Diverse, new, and dangerous opinions. www.urielcohenpriva.com

79
Followers
69
Following
39
Posts
03.09.2023
Joined
Posts Following

Latest posts by Uriel Cohen Priva @urielcohenpriva

2026 Recipient

Matthew Goldrick
Northwestern University

The recipient of the 7th Jeffrey L. Elman Prize for Scientific Achievement and Community Building is Matthew Goldrick. This honor will be celebrated at the CogSci 2026 conference with a prize and dedicated symposium.

Biography

Matthew Goldrick holds a BA, MA, and PhD in Cognitive Science from the Johns Hopkins University and was a postdoctoral fellow in the Department of Cognitive and Linguistic Sciences at Brown University. He is currently Professor of Linguistics and, by courtesy, Psychology at Northwestern University, where he serves as Director of the Cognitive Science Program.

2026 Recipient Matthew Goldrick Northwestern University The recipient of the 7th Jeffrey L. Elman Prize for Scientific Achievement and Community Building is Matthew Goldrick. This honor will be celebrated at the CogSci 2026 conference with a prize and dedicated symposium. Biography Matthew Goldrick holds a BA, MA, and PhD in Cognitive Science from the Johns Hopkins University and was a postdoctoral fellow in the Department of Cognitive and Linguistic Sciences at Brown University. He is currently Professor of Linguistics and, by courtesy, Psychology at Northwestern University, where he serves as Director of the Cognitive Science Program.

Congratulations @mattgoldrick.bsky.social for winning the Elman Prize! Very well-deserved

22.01.2026 15:26 πŸ‘ 4 πŸ” 0 πŸ’¬ 1 πŸ“Œ 0
Preview
Academia.edu - Find Research Papers, Topics, Researchers Academia.edu is the platform to share, find, and explore 50 Million research papers. Join us to accelerate your research needs & academic interests.

That's the reason I hardly ever visit the site. Very little about linguistics compared to Twitter, where I actually had some discourse.

31.12.2025 18:29 πŸ‘ 2 πŸ” 0 πŸ’¬ 0 πŸ“Œ 0

Also -- the supplementary materials provide code that lets you align underlying Buckeye corpus with its surface forms

21.12.2025 14:14 πŸ‘ 0 πŸ” 0 πŸ’¬ 0 πŸ“Œ 0
Preview
Predictability Affects Spoken Phonological Systems Indirectly The last three decades have seen a large increase in attempts to explain phonetic and phonological patterns using information theoretic properties such as frequency and predictability. One recurring ...

For example: voiced stops and voiceless fricatives typically provide more information than voiceless stops, yet voiceless stops often lenite to voiced stops and voiceless fricatives.
Real all about it:
doi.org/10.1111/lnc3...

21.12.2025 13:44 πŸ‘ 0 πŸ” 0 πŸ’¬ 1 πŸ“Œ 0

New paper in Language and Linguistics Compass! I argue that we can't claim that consonant lenition follows directly from low-information, because many such processes would be be counter-optimizing. But indirect lenition via duration reduction is still possible. I argue for the opposite in my PhD.

21.12.2025 13:44 πŸ‘ 0 πŸ” 0 πŸ’¬ 1 πŸ“Œ 0

They're not "the same", and they are usually off by some linear operation, but the fact that they are not normally distributed simply doesn't matter

15.07.2025 16:05 πŸ‘ 0 πŸ” 0 πŸ’¬ 0 πŸ“Œ 0
The R code shown is:
g <-  1:200 |> as.character()
g.x <- 2**rnorm(length(g))
n <- 10**4
y <- rnorm(n) + g.x
d <- data.frame(y, g)
m.lmer <- lmer(y ~ 0 + (1 | g), d)
m.lm <- lm(y ~ 0 + g, d)
cor(coefficients(m.lm), ranef(m.lmer)$g[,1])

and the result is 1 (the two perfectly match)

The R code shown is: g <- 1:200 |> as.character() g.x <- 2**rnorm(length(g)) n <- 10**4 y <- rnorm(n) + g.x d <- data.frame(y, g) m.lmer <- lmer(y ~ 0 + (1 | g), d) m.lm <- lm(y ~ 0 + g, d) cor(coefficients(m.lm), ranef(m.lmer)$g[,1]) and the result is 1 (the two perfectly match)

The following R code:

g <-  1:200 |> as.character()
g.x <- runif(length(g))
n <- 10**4
y <- rnorm(n) + g.x
d <- data.frame(y, g)
m.lmer <- lmer(y ~ 0 + (1 | g), d)
m.lm <- lm(y ~ 0 + g, d)
cor(coefficients(m.lm), ranef(m.lmer)$g[,1])

The result is again 1

The following R code: g <- 1:200 |> as.character() g.x <- runif(length(g)) n <- 10**4 y <- rnorm(n) + g.x d <- data.frame(y, g) m.lmer <- lmer(y ~ 0 + (1 | g), d) m.lm <- lm(y ~ 0 + g, d) cor(coefficients(m.lm), ranef(m.lmer)$g[,1]) The result is again 1

R code:

g <-  1:200 |> as.character()
g.x <- c(runif(length(g)/2, 1000, 1100), runif(length(g)/2, 0, 100))
n <- 10**4
y <- rnorm(n) + g.x
d <- data.frame(y, g)
m.lmer <- lmer(y ~ 0 + (1 | g), d)
m.lm <- lm(y ~ 0 + g, d)
cor(coefficients(m.lm), ranef(m.lmer)$g[,1])

Again, the correlation is 1, despite the very non-normal distribution

R code: g <- 1:200 |> as.character() g.x <- c(runif(length(g)/2, 1000, 1100), runif(length(g)/2, 0, 100)) n <- 10**4 y <- rnorm(n) + g.x d <- data.frame(y, g) m.lmer <- lmer(y ~ 0 + (1 | g), d) m.lm <- lm(y ~ 0 + g, d) cor(coefficients(m.lm), ranef(m.lmer)$g[,1]) Again, the correlation is 1, despite the very non-normal distribution

Linguists seem to believe that modeling an effect using random effects causes the estimation to be very different than using fixed effects, because random effects are assumed to be normally distributed. Usually, the estimates are (almost) identical, regardless of the actual distribution.

15.07.2025 15:44 πŸ‘ 0 πŸ” 0 πŸ’¬ 1 πŸ“Œ 0
Ian Maddieson at Berkeley Linguistics' commencement, with Rebecca Cover and Charles Chang

Ian Maddieson at Berkeley Linguistics' commencement, with Rebecca Cover and Charles Chang

So sad to hear of Ian Maddieson's passing. He was an amazing linguist but also an inspiring instructor and a big part of why I went into phonetics. I've always been in awe of the depth and breadth of his knowledge of the most obscure languages and will miss his kindness and wit. RIP, Ian~ 🐦🐦

06.02.2025 12:57 πŸ‘ 30 πŸ” 5 πŸ’¬ 0 πŸ“Œ 0
Preview
Contrastive vowel length and segment duration in production and perception in DjambarrpuyΕ‹u This paper deals with segment duration and phonological length in production and perception in the Australian language DjambarrpuyΕ‹u. It provides an acoustic phonetic account of vowel and consonant du...

New #labphon publication out today. I was happy to help this one along.

www.journal-labphon.org/article/id/1...

30.01.2025 20:21 πŸ‘ 7 πŸ” 1 πŸ’¬ 0 πŸ“Œ 1

πŸͺ¬πŸͺ¬πŸͺ¬ that's early!

14.01.2025 20:38 πŸ‘ 1 πŸ” 0 πŸ’¬ 0 πŸ“Œ 0

Her 8yo bilingualness:

/hameil oʊnli Ο‡osemz et hakor/
'the-coat only blocks+z ACC the-cold'

That's a double decker code switch

09.01.2025 11:28 πŸ‘ 2 πŸ” 0 πŸ’¬ 0 πŸ“Œ 0

Χ–Χ” Χ§Χ¨Χ” Χ‘Χ€ΧœΧ•Χ¨Χ Χ˜Χ™ΧŸ ואΧͺ משΧͺ"Χ€Χ™Χͺ של ΧœΧ•Χ™Χ Χ‘Χ•ΧŸ?

21.12.2024 00:06 πŸ‘ 1 πŸ” 0 πŸ’¬ 1 πŸ“Œ 0

Thanks for revitalizing it, it's really a must read material for everyone, not just linguists. I just told my kids about it this morning. They were very impressed.

18.12.2024 14:55 πŸ‘ 1 πŸ” 0 πŸ’¬ 0 πŸ“Œ 0

I will assign the bunny paper next time I teach intro. Thanks for that!

May his memory be a blessing (evidently it already is)

18.12.2024 05:17 πŸ‘ 8 πŸ” 0 πŸ’¬ 1 πŸ“Œ 0

You can now share our Linguist List post as well!

Open area Visiting Assistant Professor at Brown, deadline February first

linguistlist.org/issues/35-35...

12.12.2024 21:05 πŸ‘ 0 πŸ” 0 πŸ’¬ 0 πŸ“Œ 0
Apply - Interfolio {{$ctrl.$state.data.pageTitle}} - Apply - Interfolio

Brown's Program in Linguistics (that us!) is searching for a Visiting Assistant Professor (open field). One year appointment, possibly renewable, 2:2 teaching load, February 1st deadline

Please apply / retweet / forward

Email me if you have any questions

apply.interfolio.com/160337

11.12.2024 20:35 πŸ‘ 13 πŸ” 10 πŸ’¬ 0 πŸ“Œ 1
Journal Language Seeks Next Co-Editor

The search for new (co-)editor of Language has started! Please circulate widely. And do reach out if you have questions and/or are interested in applying. I did this job for six years β€” it was hard work, but also very rewarding.

06.12.2024 13:59 πŸ‘ 15 πŸ” 20 πŸ’¬ 1 πŸ“Œ 0

Congratulations!

07.12.2024 18:37 πŸ‘ 0 πŸ” 0 πŸ’¬ 1 πŸ“Œ 0

Goodness, you had to ruin this website too.

02.05.2024 08:25 πŸ‘ 0 πŸ” 0 πŸ’¬ 0 πŸ“Œ 0

היא Χ¦Χ•Χ“Χ§Χͺ, Χ–Χ” ממש Χ§Χ©Χ”. Χ”Χ‘Χ’Χ™Χ” היא Χ©Χ™Χ©Χ¨ΧΧœ Χ’Χ•Χ–Χ‘Χͺ אוΧͺΧ”.

10.04.2024 01:51 πŸ‘ 1 πŸ” 0 πŸ’¬ 0 πŸ“Œ 0

באיזה שהוא Χ©ΧœΧ‘ Χ©ΧœΧ—Χ Χ• אוΧͺΧ” גם Χ—Χ˜Χ™Χ£ אנרגיה של Χ Χ™Χ™Χ¦'Χ¨ Χ•Χ•ΧΧœΧ™, ΧΧ‘Χœ היא Χ—Χ–Χ¨Χ” ΧžΧ•Χ¨Χ’Χ‘Χͺ Χ›Χ™ Χ ΧΧœΧ¦Χ” ΧœΧ—ΧœΧ•Χ§ גם Χ”Χ—Χ‘Χ¨Χ•Χͺ.

05.04.2024 15:56 πŸ‘ 2 πŸ” 0 πŸ’¬ 0 πŸ“Œ 0

There's no symbol for uvular approximants in the IPA. How about /α΄™/?

05.04.2024 13:38 πŸ‘ 0 πŸ” 0 πŸ’¬ 0 πŸ“Œ 0

Χ™Χ•Χ’Χ•Χ¨Χ˜ קטן גם Χ§Χ¦Χͺ Χ‘Χ•Χ›Χ¨ ΧœΧ‘Χ–Χ•Χ§ Χ•ΧœΧ’Χ¨Χ‘Χ‘ (קטנטנΧͺΧ™ אוהבΧͺ)

05.04.2024 11:34 πŸ‘ 2 πŸ” 0 πŸ’¬ 1 πŸ“Œ 0

Χ”Χ™ΧœΧ“Χ” Χ§Χ“Χ•Χ©Χ”

25.03.2024 11:20 πŸ‘ 2 πŸ” 0 πŸ’¬ 1 πŸ“Œ 0
A density plot of schwa (second vowel in "adult") and the wedge vowel (the first vowel in "adult"), showing that the two are distinct, though of course there's some overlap.

A density plot of schwa (second vowel in "adult") and the wedge vowel (the first vowel in "adult"), showing that the two are distinct, though of course there's some overlap.

xkcd.com/386/ πŸ™‚

16.03.2024 13:37 πŸ‘ 1 πŸ” 0 πŸ’¬ 0 πŸ“Œ 0

גם אני!

16.03.2024 04:50 πŸ‘ 2 πŸ” 0 πŸ’¬ 0 πŸ“Œ 0

A student once had me prove to the entire class that schwa and ʌ are not the same.

16.03.2024 04:49 πŸ‘ 1 πŸ” 0 πŸ’¬ 0 πŸ“Œ 0

At some point my then 4-5 y/o decided that Hebrew is missing that process, and came up with /lop/ for /lo/ 'no'. Do other languages have it?

23.02.2024 01:13 πŸ‘ 2 πŸ” 0 πŸ’¬ 1 πŸ“Œ 0

With my kids I find that the -le suffix enjoys like-minded company.

23.02.2024 01:01 πŸ‘ 1 πŸ” 0 πŸ’¬ 0 πŸ“Œ 0

אΧͺ Χ™Χ•Χ“Χ’Χͺ Χ©Χ‘Χ’Χ¨ΧžΧ Χ™Χͺ Χ‘ΧŸ Χ›ΧœΧΧ™Χ™Χ Χ–Χ” Χ‘Χ“Χ™Χ•Χ§ ΧΧ™Χš שקראו ΧœΧžΧ™Χ©Χ”Χ• גם דם Χ™Χ”Χ•Χ“Χ™? Mischling. יצאΧͺ ΧΧ Χ˜Χ™Χ©ΧžΧ™Χͺ, ΧͺΧͺΧ‘Χ™Χ™Χ©Χ™.

18.01.2024 14:43 πŸ‘ 1 πŸ” 0 πŸ’¬ 1 πŸ“Œ 0