Skip to content

Commit

Permalink
Fix an error in setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
iffiX committed Mar 26, 2021
1 parent d0d6faf commit ac37b22
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 2 deletions.
Empty file added machin/__main__.py
Empty file.
7 changes: 6 additions & 1 deletion machin/frame/auto/launcher.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,12 @@
from .config import init_algorithm_from_config, is_algorithm_distributed
from .pl_plugin import DDPPlugin, DDPSpawnPlugin
from .pl_logger import LocalMediaLogger
from .dataset import *
from .dataset import (
is_discrete_space,
is_continuous_space,
RLGymDiscActDataset,
RLGymContActDataset
)


class Launcher(pl.LightningModule):
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
"psutil",
"numpy",
"torch>=1.6.0",
"pytorch-lightning>=1.0"
"pytorch-lightning>=1.0",
"torchviz",
"moviepy",
"matplotlib",
Expand Down
Empty file added test/frame/auto/test_dataset.py
Empty file.
Empty file.
Empty file.

0 comments on commit ac37b22

Please sign in to comment.