Earlier quoted context omitted.
I already added "Mojo Evangelism is my mojo" in my LinkedIn Title.
Dibs on Mojo Dojo (mojodojo.com), your new premier training resource for Mojo.
Mojo – a new programming language for AI developers
201–210 of 272 posts
Re: Mojo – a new programming language for AI developers
#202Earlier quoted context omitted.
> Julia is far more mature and advanced in many ways. Many folks have and will continue to push Julia forward and we wish them the best, it is a lovely ecosystem and language. There is room for more than one thing! :) In general this tends to be true. However, in this case I'm not so sure. Modular seems to have garnered a lot of investment - probably orders of magnitude more than the Julia community has been able to…
Julia is doing quite well for such a young language, lets not forget how many decades it took for Python to actually matter beyond OS scripting. https://juliahub.com/case-studies/
Re: Mojo – a new programming language for AI developers
#203Re: Mojo – a new programming language for AI developers
#204Earlier quoted context omitted.
Julia is doing quite well for such a young language, lets not forget how many decades it took for Python to actually matter beyond OS scripting. https://juliahub.com/case-studies/
Can 11 years old still be considered young for a programming language?
Re: Mojo – a new programming language for AI developers
#205Hi Jeremy Howard here. I pop up in the launch video to demo super-fast matmul and mandelbrot in mojo. I'm pretty excited about this language, to say the least - not just for AI/ML, but for pretty much everything! Lemme know if you have any questions and I'll answer as best as I can. (I'm an advisor to Modulo.)
Re: Mojo – a new programming language for AI developers
#206Re: Mojo – a new programming language for AI developers
#207Earlier quoted context omitted.
Julia is doing quite well for such a young language, lets not forget how many decades it took for Python to actually matter beyond OS scripting. https://juliahub.com/case-studies/
Can 11 years old still be considered young for a programming language?
Re: Mojo – a new programming language for AI developers
#208Earlier quoted context omitted.
Maybe someone can correct me, but I don't think it's a superset of Python--I don't think it will accept existing Python programs and I'm pretty sure you can't do all of the dynamic Python stuff (otherwise you would have to essentially compile/link an interpreter into your binaries giving you these super slow paths that aren't necessarily obvious when reading source code). > Judging by what I've seen so far, it seems…
>We utilize CPython to run all existing Python3 code “out of the box” without modification >Further, we decided that the right long-term goal for Mojo is to provide a superset of Python
I have no idea how to reconcile that with the quotes you provided.
[edit] Ah, it seems you can control things running in a bundled CPython:
plt = Python.import_module("matplotlib.pyplot")
fig = plt.figure(1, [width, height], dpi)
ax = fig.add_axes([0.0, 0.0, 1.0, 1.0], False, 1), "hsv", 0, 0, 1.5)
...
plt.imshow(image)