Skip to content

Commit

Permalink
fix: don't init hordelib
Browse files Browse the repository at this point in the history
fix: re-add missing import
  • Loading branch information
tazlin committed Nov 22, 2024
1 parent 47624ab commit 2abaf7d
Showing 1 changed file with 6 additions and 11 deletions.
17 changes: 6 additions & 11 deletions train.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,26 +28,21 @@
import json
import math
import os
import random
import time

import torch
import torch.nn as nn
from torch import optim
from torch.utils.data import DataLoader, Dataset

import hordelib

hordelib.initialise()
import pickle
import random
import signal
import time
from collections import defaultdict
from typing import Any

import optuna
import optunahub
import torch
import torch.nn as nn
from optuna.distributions import CategoricalDistribution, FloatDistribution, IntDistribution
from optuna.terminator import EMMREvaluator, MedianErrorEvaluator, Terminator, TerminatorCallback
from torch import optim
from torch.utils.data import DataLoader, Dataset
from tqdm import tqdm

from hordelib.horde import HordeLib
Expand Down

0 comments on commit 2abaf7d

Please sign in to comment.