Upload to Main
This commit is contained in:
10
deepcore/methods/full.py
Normal file
10
deepcore/methods/full.py
Normal file
@@ -0,0 +1,10 @@
|
||||
import numpy as np
|
||||
from .coresetmethod import CoresetMethod
|
||||
|
||||
|
||||
class Full(CoresetMethod):
|
||||
def __init__(self, dst_train, args, fraction, random_seed, **kwargs):
|
||||
self.n_train = len(dst_train)
|
||||
|
||||
def select(self, **kwargs):
|
||||
return {"indices": np.arange(self.n_train)}
|
||||
Reference in New Issue
Block a user