You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
~/max/examples/pipelines main ❯ magic run text_generation
Traceback (most recent call last):
File "/home/ngogober/max/examples/pipelines/text_generation.py", line 18, in <module>
from architectures import register_all_models
ModuleNotFoundError: No module named 'architectures'
I have not modified the pixi.toml, but here is the contents:
[project]
authors = ["Modular <[email protected]>"]
channels = ["conda-forge", "https://conda.modular.com/max-nightly/"]
description = "Examples exercising the max pipelines in python"
name = "Python Pipelines Examples"
platforms = ["osx-arm64", "linux-aarch64", "linux-64"]
version = "0.1.0"
[tasks]
text_generation = "python text_generation.py"
[dependencies]
python = ">=3.9,<3.13"
max = ">=24.6.0.dev2024090821"
[pypi-dependencies]
tqdm = ">=4.66.5"
It doesn't have any architectures module in its dependencies, so makes sense that it wouldn't find it.
Steps to reproduce
Steps to reproduce:
Run magic run text_generation
get error
System information
What OS did you do install MAX on ?
Shouldn't matter for this issue, but Ubuntu
Provide version information for MAX by pasting the output of max -v`
The python package max is indeed in my site-packages and importable within python, but there is no cli command max available, and in python import max; print(max.__version__) has no result.
The max repo is on commit e3e3617998db8dcd028fce3f26bfddcc14826a6e
Provide version information for Mojo by pasting the output of mojo -v`
Bug description
Following the README in
examples/pipelines
:I have not modified the
pixi.toml
, but here is the contents:It doesn't have any
architectures
module in its dependencies, so makes sense that it wouldn't find it.Steps to reproduce
Steps to reproduce:
magic run text_generation
System information
Shouldn't matter for this issue, but Ubuntu
The python package
max
is indeed in mysite-packages
and importable within python, but there is no cli commandmax
available, and in pythonimport max; print(max.__version__)
has no result.The
max
repo is on commite3e3617998db8dcd028fce3f26bfddcc14826a6e
magic -v
magic
does not have a-v
flag, but does have a--version
flag:The text was updated successfully, but these errors were encountered: