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

Update import path #213

Merged
merged 3 commits into from
Oct 30, 2023
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
4 changes: 2 additions & 2 deletions kubernetes/mlflow/pytorch_lightning_distributed.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import os

import lightning.pytorch as pl
from lightning.pytorch import Callback
import optuna
from optuna.integration.mlflow import MLflowCallback
import pytorch_lightning as pl
from pytorch_lightning import Callback
import torch
import torch.nn as nn
import torch.nn.functional as F
Expand Down
2 changes: 1 addition & 1 deletion pytorch/pytorch_lightning_ddp.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@
from typing import List
from typing import Optional

import lightning.pytorch as pl
import optuna
from optuna.integration import PyTorchLightningPruningCallback
import pytorch_lightning as pl
import torch
from torch import nn
from torch import optim
Expand Down
2 changes: 1 addition & 1 deletion pytorch/pytorch_lightning_simple.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@
from typing import List
from typing import Optional

import lightning.pytorch as pl
import optuna
from optuna.integration import PyTorchLightningPruningCallback
from packaging import version
import pytorch_lightning as pl
import torch
from torch import nn
from torch import optim
Expand Down
2 changes: 1 addition & 1 deletion pytorch/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
mpi4py
plotly
pytorch-ignite
pytorch-lightning
lightning
skorch
torch
torchvision
Expand Down