marco · @mc
704 followers · 180 posts · Server sigmoid.social

The video from my talk `LotteryTickets.jl: Sparsify Your Flux Models` is now available!

youtube.com/watch?v=ZmcaUyZLi4

The repo can be found here: github.com/mcognetta/LotteryTi

#juliacon #Julia #julialang #ml #deeplearning

Last updated 1 year ago

Andreu Casablanca 🐀 · @castarco
97 followers · 214 posts · Server hachyderm.io

1/2

At first, I was a bit skeptical of the new Modular's language.

Having no binaries available (only a playground), and a long history of contenders such as or Pyston that never achieved full compatibility... was a huge turnoff.

The amount of Python compilers that never reach 100% compatibility is almost hilarious.

Having seen the tremendous amount of effort behind , and how little is its community compared to Python's... adds on top of that.

#mojo #python #pypy #julialang

Last updated 1 year ago

Mehmet Hakan Satman · @mhsatman
177 followers · 211 posts · Server fosstodon.org

Numerical integration of Gaussian distribution from -1 to 1 with pure Mojo and Python.

The compiled Mojo implementation is ~9x faster than the interpreted Python implementation.

Implementations are kept as same as possible.

The time spent by Julia implementation is nearly equal to the time spent by Mojo.

:python: :julia:

#mojo #python #julialang

Last updated 1 year ago

W. Bauer (wilcrofter) · @wilcrofter
65 followers · 447 posts · Server julialang.social

Skylar Gering discusses SubZero.jl, a package to simulate ice flows which is soon to be released. Shown are two simulations. One, on the right, contains 4 islands which are missing on the left. Despite being barely visible they clearly obstruct flow. The islands are present on the real Earth.

#julialang #juliacon #climate

Last updated 1 year ago

W. Bauer (wilcrofter) · @wilcrofter
64 followers · 446 posts · Server julialang.social

Simon Byrne, CliMA lead programmer, discusses extending Julia's broadcast operator for best performance of Earth system models on GPU clusters. I imagine, or perhaps hope, this is another emerging design pattern for climate modeling.
youtube.com/watch?v=0c5oHS1865

, ,

#julialang #climate #juliacon

Last updated 1 year ago

W. Bauer (wilcrofter) · @wilcrofter
64 followers · 446 posts · Server julialang.social

All or most videos from JuliaCon 2023 are now available on YouTube (youtube.com/playlist?list=PLP8).

The image is from a talk by Gregory Wagner, author of Oceananigans. It shows what may become a dominant design idea in CliMA. It shows the connection between customizible fields in a model constructor and the terms of the PDE on which the model is based.

#climate #julia #julialang

Last updated 1 year ago

Alessandro · @alephoto85
270 followers · 1160 posts · Server livellosegreto.it

[NOTIZIE] Il linguaggio di programmazione Julia debutta nella top 20 dell'indice TIOBE

@programmazione

"Il linguaggio di programmazione Julia si è assicurato per la prima volta un posto nell'ambita top 20 del TIOBE Index (Agosto 2023).

Questo storico risultato segna un'importante pietra miliare per Julia, un linguaggio di programmazione che esiste da poco più di un decennio."

[Articolo in inglese]

developer-tech.com/news/2023/a

#programmazione #julialang

Last updated 1 year ago

Victor Buendía · @vbuendiar
375 followers · 162 posts · Server fediscience.org

Small tip: if you want to write several vectors to the same file, assuming that the dimensions coincide, you can do this just with

open("path", "w") do io
writedlm(io, [x y z])
end

**But! The command [x y z] generates a matrix, thus allocating a lot of memory**. Luckily, writedlm also accepts zip(x,y,z), which does the same and is orders of magnitude faster, since it does not allocate memory!

#julia #julialang

Last updated 1 year ago

Adam H. Sparks · @adamhsparks
497 followers · 74 posts · Server hachyderm.io

We’ve a new update on our whole farm liming project, FA099 “WA Farm Data Sharing” out now! Of interest to my general community here, we’ve written a few API clients and a Monté Carlo simulation model in Julia to simulate whole farm liming application strategies.

Managing soil pH is incredibly important for crop production and liming is a big investment that pays off over long periods of time. So this project aims to help farmers make liming decisions.

gga.org.au/wa-farm-data-sharin

#julialang #ag

Last updated 1 year ago

Mehmet Hakan Satman · @mhsatman
175 followers · 207 posts · Server fosstodon.org

Early release notes for Julia v1.11

The entry point for Julia has been standardized to Main.main(ARGS). When is invoked to run a script or expression (i.e. using julia script.jl or julia -e expr), julia will subsequently run the Main.main function automatically if...

github.com/JuliaLang/julia/com

#julialang

Last updated 1 year ago

Rami Krispin :unverified: · @ramikrispin
1034 followers · 537 posts · Server mstdn.social

(1/2) Julia Bootcamp 🚀🚀🚀

While googling about Bayesian statistics, I found this awesome resource - Julia for Economists Bootcamp by Cameron Pfiffer. The course was recorded as part of Julia's sessions at Stanford's GSB. The course covers the following topics:
✅ Julia basics
✅ Parallelization
✅ Optimization and Automatic Differentiation
✅ High-performance Julia
✅ Computational Bayesian statistics

#DataScience #statistics #bayesian #julialang

Last updated 1 year ago

JuliaR · @jromanowska
55 followers · 243 posts · Server fosstodon.org
Adam Wysokiński · @adam_wysokinski
94 followers · 384 posts · Server fediscience.org
Abel Soares Siqueira · @abelsiqueira
90 followers · 40 posts · Server mathstodon.xyz

A very common question in many forums is why some languages, such as , doesn't compute 0.1 + 0.2 - 0.3 correctly. Check abelsiqueira.com/blog/2023-08- for my latest video and post on the subject.

#floatingpoint #scientificcomputing #julialang

Last updated 1 year ago

KenWouldJef · @KenwoodChef
15 followers · 131 posts · Server librarysocialism.social

Julia people should register .jl as a tld with ICANN and rigg it so packages automatically have a redirect from that domain to the relevant source (subject to some package use metric perhaps)

It would be cool to have DifferentialEquations.js to redirect to juliapackages.com/p/differenti

#julia #julialang

Last updated 1 year ago

AskUbuntu · @askubuntu
226 followers · 1802 posts · Server ubuntu.social

How to move .julia folder to another partition in Ubuntu?

askubuntu.com/q/1483808/612

#diskusage #chromebook #julialang

Last updated 1 year ago

Mehmet Hakan Satman · @mhsatman
175 followers · 207 posts · Server fosstodon.org

In the content of your matrices is not limited by the amount of computer memory, you can create a matrix of a size given by your hard drive using

mmap(Matrix{Float64}, (n, m)).

All the tools of linear algebra will be automatically defined on this matrix.

#julialang

Last updated 1 year ago

Esteban :linux: :rstats: · @montenegro
505 followers · 1 posts · Server fediscience.org

Introduction time! Hello fediscience members! I'm a new member in this instance, but I'm not new in the fediverse. I migrated from fosstodon.org to this instance. There's nothing wrong, I just needed a place where I can post in English and Spanish. I'm an Assistant Professor at CSU Stan. I usually post about , , , , , , , , , , and other topics that I find interesting in .

#science #mentalhealth #dementia #aging #bayesian #psychology #python #julialang #linux #Quarto #rstats

Last updated 1 year ago

Julia 1.9.3 release!!!

🟣🔴🟢
github.com/JuliaLang/julia

#julialang

Last updated 1 year ago

Adam H. Sparks · @adamhsparks
469 followers · 1 posts · Server hachyderm.io

I moved instances, so here's an again. Currently I’m employed as a Bioeconomic modeller for the state of Western Australia in Perth working in agricultural systems. I have training in , , and . Interested in using and promoting , , , and . I use and for my work.

#introduction #agronomy #PlantPathology #Epidemiology #gis #OpenScience #ReproducibleResearch #opensource #openaccess #rstats #julialang

Last updated 1 year ago