Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
42 commits
Select commit Hold shift + click to select a range
7cd0d35
Deleted low quality image
Eamon2009 Apr 13, 2026
025fd90
Merge pull request #24 from Eamon2009/exp
Eamon2009 Apr 13, 2026
b8b35b4
added new print statements ,now easy to track progress
Eamon2009 Apr 13, 2026
6c5e298
Enhance README with project details and images
Eamon2009 Apr 13, 2026
eed92bf
setting up new env for wsl Ubuntu
Eamon2009 Apr 14, 2026
89272df
a new diverse data set for experiment
Eamon2009 Apr 14, 2026
edc14ef
removing all the binary, venv, .exe files
Eamon2009 Apr 14, 2026
42d287e
Create train_test.yml
Eamon2009 Apr 14, 2026
e07a2f2
all training logs in one csv
Eamon2009 Apr 14, 2026
b38c510
Merge pull request #25 from Eamon2009/master
Eamon2009 Apr 14, 2026
10d88c7
Merge pull request #26 from Eamon2009/exp
Eamon2009 Apr 14, 2026
860a77f
CMake file removed ,not needed
Eamon2009 Apr 14, 2026
c48d05a
Merge branch 'master' of https://github.com/Eamon2009/Transformer-lan…
Eamon2009 Apr 14, 2026
915df43
Update .gitignore
Eamon2009 Apr 14, 2026
d51023b
Update GitHub Actions workflow for train tests
Eamon2009 Apr 14, 2026
e0943f2
Add GitHub Actions workflow for transformer tests
Eamon2009 Apr 14, 2026
94fe551
Add general CI workflow for linting and checks
Eamon2009 Apr 14, 2026
2b0f85f
Update README.md
ethos-cmd Apr 14, 2026
4ccfef2
Merge pull request #27 from codeenthusiasm23/patch-1
Eamon2009 Apr 14, 2026
ee7f02b
Correct title to 'What Are Scaling Laws?'
Eamon2009 Apr 14, 2026
0b7db40
Create .gitkeep
Eamon2009 Apr 15, 2026
9b9ab17
Create read.md
Eamon2009 Apr 15, 2026
dc94eab
Merge branch 'master' of https://github.com/Eamon2009/Transformer-lan…
Eamon2009 Apr 15, 2026
302cc79
Rename project to Quadtrix and update images
Eamon2009 Apr 15, 2026
d94d6b4
Update README with additional image
Eamon2009 Apr 15, 2026
2de747b
Update README.md
Eamon2009 Apr 16, 2026
b4f56e5
Update README with scaling laws details
Eamon2009 Apr 16, 2026
814173f
GPU information
Eamon2009 Apr 16, 2026
629d724
Update README with new graph of Neural scaling Law
Eamon2009 Apr 16, 2026
c9e0684
training logs
Eamon2009 Apr 17, 2026
ae370e8
training logs summary
Eamon2009 Apr 18, 2026
95d4e00
run2 logs
Eamon2009 Apr 19, 2026
7bb893b
Create CNAME
Eamon2009 Apr 20, 2026
899e51a
Update CNAME
Eamon2009 Apr 20, 2026
2d09df1
Delete CNAME
Eamon2009 Apr 20, 2026
b55ff5f
Delete README.md
Eamon2009 Apr 20, 2026
3a168f0
Update print statement from 'Hello' to 'Goodbye'
Eamon2009 Apr 20, 2026
1fb6087
Delete index.html
Eamon2009 Apr 20, 2026
6796fe5
Create README.md for Quadtrix project
Eamon2009 Apr 20, 2026
766ffba
Delete train_test/infer.cu
Eamon2009 Apr 22, 2026
fa3f93b
training logs in a file to analyze model
Eamon2009 Apr 24, 2026
3f2ddfa
Merge branch 'master' of https://github.com/Eamon2009/Quadtrix
Eamon2009 Apr 24, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions .github/workflows/general.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: General CI

on:
push:
paths-ignore:
- 'transformer.py'
- 'train_test/**'
- '**.md'
pull_request:
paths-ignore:
- 'transformer.py'
- 'train_test/**'
- '**.md'

jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- name: Set up Python
uses: actions/setup-python@v4
with:
python-version-file: '.python-version'

- name: Install dependencies
run: pip install -r requirements.txt

- name: General check
run: echo "General CI passed for this commit"
26 changes: 26 additions & 0 deletions .github/workflows/test_transformer.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Test Transformer

on:
push:
paths:
- 'transformer.py'
pull_request:
paths:
- 'transformer.py'

jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- name: Set up Python
uses: actions/setup-python@v4
with:
python-version-file: '.python-version'

- name: Install dependencies
run: pip install -r requirements.txt

- name: Run transformer tests
run: python transformer.py
26 changes: 26 additions & 0 deletions .github/workflows/train_test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Test Train Scripts

on:
push:
paths:
- 'train_test/**'
pull_request:
paths:
- 'train_test/**'

jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- name: Set up Python
uses: actions/setup-python@v4
with:
python-version-file: '.python-version'

- name: Install dependencies
run: pip install -r requirements.txt

- name: Run train_test scripts
run: python -m train_test
16 changes: 10 additions & 6 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
# Virtual environments
.venv

.env
eamon_env
__pycache__
best_model.pt
.ipynb_checkpoints
*.exe


.exe
checkpoints/*.pt
checkpoints/*.pth
checkpoints/*.ckpt
!checkpoints/.gitkeep
!checkpoints/README.md
!logs/.gitkeep
!logs/README.md
!logs/train_loss.csv
3 changes: 2 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"github.copilot.nextEditSuggestions.enabled": false,
"python-envs.defaultEnvManager": "ms-python.python:system",
"python-envs.defaultPackageManager": "ms-python.python:pip"
"python-envs.defaultPackageManager": "ms-python.python:pip",
"cmake.sourceDirectory": "C:/Users/Admin/Documents/GitHub/Bigram-language-model/generate"
}
Binary file added GPU train/image.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Loading