Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
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
17 changes: 10 additions & 7 deletions .github/workflows/train_test.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
name: Run Train Test
name: Test Train Scripts

on: [push, pull_request]
on:
push:
paths:
- 'train_test/**'
pull_request:
paths:
- 'train_test/**'

jobs:
test:
Expand All @@ -11,13 +17,10 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version-file: '.python-version'
python-version-file: '.python-version'

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

- name: Run transformer tests
run: python transformer.py

- name: Run train_test scripts
run: python train_test/
run: python -m train_test
11 changes: 8 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
# Virtual environments
.venv
eamon_env
__pycache__
best_model.pt
.ipynb_checkpoints
.exe


checkpoints/*.pt
checkpoints/*.pth
checkpoints/*.ckpt
!checkpoints/.gitkeep
!checkpoints/README.md
!logs/.gitkeep
!logs/README.md
!logs/train_loss.csv
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