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

Remove unused modules #51

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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 pocomc/flow.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from typing import Union, Optional, Tuple, Dict, List
from typing import Tuple

import numpy as np
import copy
Expand Down
3 changes: 1 addition & 2 deletions pocomc/mcmc.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
import numpy as np
import torch

from .tools import numpy_to_torch, torch_to_numpy, flow_numpy_wrapper
from .student import fit_mvstud
from .tools import flow_numpy_wrapper

@torch.no_grad()
def preconditioned_pcn(state_dict: dict,
Expand Down
1 change: 0 additions & 1 deletion pocomc/particles.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
from typing import Any
import numpy as np

class Particles:
Expand Down