mirror of
https://github.com/ml-explore/mlx-examples.git
synced 2025-09-01 21:01:32 +08:00
Fix import order of normalizing_flow (#326)
This commit is contained in:
@@ -1,15 +1,13 @@
|
||||
# Copyright © 2023-2024 Apple Inc.
|
||||
|
||||
from tqdm import trange
|
||||
import numpy as np
|
||||
from sklearn import datasets, preprocessing
|
||||
import matplotlib.pyplot as plt
|
||||
|
||||
import mlx.core as mx
|
||||
import mlx.nn as nn
|
||||
import mlx.optimizers as optim
|
||||
|
||||
import numpy as np
|
||||
from flows import RealNVP
|
||||
from sklearn import datasets, preprocessing
|
||||
from tqdm import trange
|
||||
|
||||
|
||||
def get_moons_dataset(n_samples=100_000, noise=0.06):
|
||||
|
Reference in New Issue
Block a user