https://github.com/thyeem/nul
Full of Emptiness
https://github.com/thyeem/nul
Last synced: 12 months ago
JSON representation
Full of Emptiness
- Host: GitHub
- URL: https://github.com/thyeem/nul
- Owner: thyeem
- License: mit
- Created: 2024-11-03T10:44:55.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2025-08-04T00:23:56.000Z (about 1 year ago)
- Last Synced: 2025-08-04T02:39:17.601Z (about 1 year ago)
- Language: Python
- Size: 777 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: ChangeLog.md
- License: LICENSE
Awesome Lists containing this project
README

# nul
Using `nul`, anyone can easily create, train, and experiment with a customized language model from the
ground up.
## Usage
```
$ nul -h
usage: nul [--conf] [-h] [-V] ...
commands:
new create a model from a conf file
ls list models
rm remove models
show show information for a model
train train a model
options:
--conf show the default model configuration
-h, --help show this message
-V, --version show version information
```
Start with `nul --conf > pilot.conf` to create a default model configuration.
Modify the parameter values, then generate a model with a name (e.g., `pilot`):
`nul new -f pilot.conf pilot`
Modify the training-related parameter values related to fit your preference as well.
You can train the create model with your own data and tokenizer:
`nul train -f pilot.conf pilot`