Add your description here
Project description
AMALIA
AMALIA is a decoder-only transformer architecture inherited from EuroLLM-9B, implemented in plain PyTorch (no external attention kernels).
Usage in Google Colab
!pip install amalia
import torch
from amalia_core import AmaliaConfig, AmaliaForCausalLM
# Initialize the model with random weights
config = AmaliaConfig()
model = AmaliaForCausalLM(config)
# Run a forward pass on random token ids
input_ids = torch.randint(0, config.vocab_size, (1, 16))
logits = model(input_ids)
print(logits.shape) # torch.Size([1, 16, 128000])
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
amalia-0.2.0.tar.gz
(16.3 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file amalia-0.2.0.tar.gz.
File metadata
- Download URL: amalia-0.2.0.tar.gz
- Upload date:
- Size: 16.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":null,"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
236aaa990b8d44ac1a0787bb6b56f3fb8bec25b3331736c007316a7c10bfd82d
|
|
| MD5 |
488079958d60baa19a9df03e4f78a2ee
|
|
| BLAKE2b-256 |
96cc93f00f2f5b3263ce5b5fb7b104286f725df91d74886ad9fa39c754c06b96
|
File details
Details for the file amalia-0.2.0-py3-none-any.whl.
File metadata
- Download URL: amalia-0.2.0-py3-none-any.whl
- Upload date:
- Size: 3.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":null,"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b1ec7a9d37030110e5f0e54b5e8b417286aade3330a1a170ea7d8b6753f14f3c
|
|
| MD5 |
dcf0f2a32daea3e8e1fe489039740623
|
|
| BLAKE2b-256 |
eb8426f13bbeb5eda57445d0c6569d4d70244606edbd8a96db794745eba90a8e
|