Jack Clayton
Jack Clayton
Explore posts from servers
MModular
Created by Jack Clayton on 7/26/2024 in #community-showcase
MAX tutorials community feedback and questions
No description
9 replies
MModular
Created by Jack Clayton on 7/26/2024 in #community-showcase
Magic CLI alpha community feedback and questions
No description
96 replies
MModular
Created by Jack Clayton on 6/27/2024 in #community-showcase
Beta test Llama3 serving and GUI on MAX Nightly
No description
38 replies
MModular
Created by Jack Clayton on 6/7/2024 in #community-showcase
MAX ⚡ with quantization and macOS support thread
Launch blog: https://www.modular.com/blog/max-24-4-introducing-quantization-apis-and-max-on-macos Post any issues you're having with the new release or macOS support here. You can get started installing here: https://modul.ar/install-max and running the new llama3 quantization example here: https://modul.ar/llama3
6 replies
MModular
Created by Jack Clayton on 6/4/2024 in #community-showcase
Deep Dive into Ownership in Mojo
2 replies
MModular
Created by Jack Clayton on 5/17/2024 in #community-showcase
Modverse Weekly Issue 34
1 replies
MModular
Created by Jack Clayton on 5/11/2024 in #community-showcase
Feedback on new #community channel
Please leave any feedback here on the new community channel
10 replies
MModular
Created by Jack Clayton on 5/11/2024 in #community-showcase
mojo-pytest: Mojo test runner and pytest plugin
11 replies
MModular
Created by Jack Clayton on 5/11/2024 in #community-showcase
Momograd: reimplementation of Micrograd in Mojo
No description
2 replies
MModular
Created by Jack Clayton on 5/11/2024 in #community-showcase
llm.mojo: GPT2 fine-tuning and inference in a single Mojo file
2 replies
MModular
Created by Jack Clayton on 5/11/2024 in #community-showcase
LSX: HTML building library
1 replies
MModular
Created by Jack Clayton on 5/11/2024 in #community-showcase
mojo-ui-html: UI, HTML, CSS
4 replies
MModular
Created by Jack Clayton on 5/11/2024 in #community-showcase
Mojo Learning
3 replies
MModular
Created by Jack Clayton on 5/11/2024 in #community-showcase
mojo-sort
47 replies
MModular
Created by Jack Clayton on 5/11/2024 in #community-showcase
Lightbug HTTP: Mojo web framework
57 replies
AOAnswer Overflow
Created by Jack Clayton on 5/11/2024 in #questions
Custom domain reset
Hi I started the free trial for hosting on a custom domain, I tried setting the domain, but the IT guys will be out for the weekend and I want to reset it back to https://www.answeroverflow.com/c/1087530497313357884 for now. Removing the custom domain and pressing enter still tries to redirect. Is there a way to reset this?
8 replies
AOAnswer Overflow
Created by Jack Clayton on 5/10/2024 in #questions
Can you retroactively index forums?
Nothing has popped up yet for https://discord.gg/modular on the questions channel: https://www.answeroverflow.com/c/1087530497313357884. Is there a way to index historical messages from users who haven't consented yet? If they make a new post, or answer a question, will their posts be retroactively indexed?
10 replies
MModular
Created by Jack Clayton on 5/10/2024 in #community-showcase
Mojo PNG parsing blog and project
No description
2 replies
MModular
Created by Jack Clayton on 5/10/2024 in #community-showcase
Basalt: ML Framework
26 replies
MModular
Created by Jack Clayton on 10/19/2023 in #questions
Module pymatmul not found
@aespeiuk can you try changing hello_interop.mojo to this and running it:
from python.python import Python


def main():
print("Hello Mojo 🔥!")
for x in range(9, 0, -3):
print(x)
try:
Python.add_to_path(".")
Python.add_to_path("./examples")
let sys = Python.import_module("sys")
for p in sys.path:
print(p)
let test_module = Python.import_module("simple_interop")
test_module.test_interop_func()
except e:
print(e, "could not find module simple_interop")
from python.python import Python


def main():
print("Hello Mojo 🔥!")
for x in range(9, 0, -3):
print(x)
try:
Python.add_to_path(".")
Python.add_to_path("./examples")
let sys = Python.import_module("sys")
for p in sys.path:
print(p)
let test_module = Python.import_module("simple_interop")
test_module.test_interop_func()
except e:
print(e, "could not find module simple_interop")
And show me the output thanks
25 replies