Compare commits
No commits in common. "ee58b085f5dd2a5caebfb4102b050f537aaf2f1e" and "8d0548149840aef51dc625b8f5b3e8ef54bb21a8" have entirely different histories.
ee58b085f5
...
8d05481498
|
@ -7,7 +7,7 @@ config = AIIAConfig(model_name="AIIA-Base-512x20k")
|
|||
model = AIIABase(config)
|
||||
|
||||
# Initialize pretrainer with the model
|
||||
pretrainer = Pretrainer(model, learning_rate=1e-4, config=config)
|
||||
pretrainer = Pretrainer(model, learning_rate=1e-4)
|
||||
|
||||
# List of dataset paths
|
||||
dataset_paths = [
|
||||
|
|
|
@ -2,7 +2,4 @@ torch>=2.5.0
|
|||
numpy
|
||||
tqdm
|
||||
pytest
|
||||
pillow
|
||||
pandas
|
||||
torchvision
|
||||
pyarrow
|
||||
pillow
|
|
@ -130,6 +130,7 @@ class AIIABaseShared(AIIA):
|
|||
self.max_pool = nn.MaxPool2d(
|
||||
kernel_size=1,
|
||||
stride=1,
|
||||
padding=1
|
||||
)
|
||||
|
||||
def forward(self, x):
|
||||
|
|
Loading…
Reference in New Issue