ZhangZhihui's Blog |
|
||
2024年10月17日
摘要:
single = np.array( [[[[5, 0, 8, 7, 8, 1], [1, 9, 5, 0, 7, 7], [6, 0, 2, 4, 6, 6], [9, 7, 6, 6, 8, 4], [8, 3, 8, 5, 1, 3], [7, 2, 7, 0, 1, 0]]]] ) sing 阅读全文
摘要:
阅读全文
2024年10月15日
摘要:
images, labels = generate_dataset(img_size=5, n_images=300, binary=True, seed=13) And then let’s visualize the first 30 images: image_r = np.zeros((5, 阅读全文
摘要:
阅读全文
2024年10月14日
摘要:
Fixed with restarting VSCode. 阅读全文
摘要:
from sklearn.datasets import make_moons from sklearn.model_selection import train_test_split X, y = make_moons(n_samples=100, noise=.3, random_state=0 阅读全文
2024年10月13日
摘要:
class StepByStep(): def __init__(self, model, loss_fn, optimizer): self.device = 'cuda' if torch.cuda.is_available() else 'cpu' self.model = model.to( 阅读全文
摘要:
阅读全文
2024年10月12日
摘要:
def make_train_step_fn(model, loss_fn, optimizer): def perform_train_step_fn(x, y): # Set model to TRAIN mode model.train() # Step 1 - Compute model's 阅读全文
2024年10月5日
摘要:
%%writefile data_preparation/v0.py device = 'cuda' if torch.cuda.is_available() else 'cpu' # Our data was in Numpy arrays, but we need to transform th 阅读全文
|
Copyright © 2024 ZhangZhihuiAAA
Powered by .NET 9.0 on Kubernetes |