Skip to content

Commit

Permalink
[DOCS]
Browse files Browse the repository at this point in the history
  • Loading branch information
Your Name committed Sep 14, 2024
1 parent 1b5d7e8 commit 47b67e0
Show file tree
Hide file tree
Showing 8 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions docs/mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,9 @@ extra:
- icon: fontawesome/brands/discord
link: https://discord.com/servers/agora-999382051935506503

analytics:
provider: google
property: G-MPE9C65596
# analytics:
# provider: google
# property: G-MPE9C65596

theme:
name: material
Expand Down Expand Up @@ -133,7 +133,7 @@ nav:
- Home:
- Installation: "swarms/index.md"
# - Contributing: "contributing.md"
- Purpose: "swarms/purpose.md"
# - Purpose: "swarms/purpose.md"
- swarms_torch:
- ParticleSwarmOptimization: "swarms/pso.md"
- AntColonyOptimization: "swarms/aco.md"
Expand Down
4 changes: 2 additions & 2 deletions swarms_torch/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
from swarms_torch.fish_school import Fish, FishSchool
from swarms_torch.hivemind_swarm_transformer import HivemindSwarm
from swarms_torch.mixture_of_mamba import MixtureOfMambas
from swarms_torch.multi_swarm_pso import MultiSwarmPSO
from swarms_torch.pso.multi_swarm_pso import MultiSwarmPSO
from swarms_torch.neuronal_transformer import NNTransformer
from swarms_torch.particle_swarm import ParticleSwarmOptimization
from swarms_torch.queen_bee import QueenBeeGa
from swarms_torch.spiral_optimization import SPO
from swarms_torch.transformer_pso import (
from swarms_torch.pso.transformer_pso import (
Particle,
TransformerParticleSwarmOptimization,
)
Expand Down
Empty file added swarms_torch/pso/__init__.py
Empty file.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion tests/transformer_pso.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import torch
from torch.utils.data import DataLoader
from swarms_torch.transformer_pso import (
from swarms_torch.pso.transformer_pso import (
SimpleTransformer,
TransformerParticleSwarmOptimization,
)
Expand Down

0 comments on commit 47b67e0

Please sign in to comment.