Skip to content

Commit

Permalink
beginning dataset building
Browse files Browse the repository at this point in the history
  • Loading branch information
landoskape committed Apr 6, 2024
1 parent b5e0abe commit 5951b50
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions dominoes/datasets.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,17 @@
from abc import ABC, abstractmethod
import itertools
from multiprocessing import Pool
from functools import partial

import numpy as np
import scipy as sp
import torch

from . import utils
from multiprocessing import Pool
from functools import partial

class dominoe(ABC):
def __init__(self):
pass


def dominoeUnevenBatch(batchSize, minSeq, maxSeq, listDominoes, dominoeValue, highestDominoe, ignoreIndex=-1, return_full=False):
Expand Down

0 comments on commit 5951b50

Please sign in to comment.