Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(requirements.txt): relaxed #23

Merged
merged 1 commit into from
Jul 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion kan_gpt/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.0.5
1.1.0
2 changes: 1 addition & 1 deletion kan_gpt/sweep.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import torch

import wandb

from kan_gpt.train import main


Expand Down
2 changes: 1 addition & 1 deletion kan_gpt/train.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@

import numpy as np
import torch
import wandb
from torch.nn import functional as F
from torch.utils.data.dataloader import DataLoader
from wandb.sdk.lib import RunDisabled
from wandb.sdk.wandb_run import Run

import wandb
from kan_gpt.dataset import TinyShakespeareDataset, WebTextDataset
from kan_gpt.mingpt.model import GPT as MLP_GPT
from kan_gpt.mingpt.trainer import Trainer
Expand Down
22 changes: 11 additions & 11 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
matplotlib==3.6.2
numpy==1.24.4
scikit_learn==1.1.3
setuptools==65.5.0
sympy==1.11.1
torch==2.0.1
tqdm==4.66.2
pandas==2.0.3
requests==2.31.0
transformers==4.40.1
wandb==0.16.6
matplotlib>=3.6.2
numpy>=1.24.4
scikit_learn>=1.1.3
setuptools>=65.5.0
sympy>=1.11.1
torch>=2.0.1
tqdm>=4.66.2
pandas>=2.0.3
requests>=2.31.0
transformers>=4.40.1
wandb>=0.16.6
Loading