File size: 174 Bytes
6eb55db
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
import copy
import torch

from .GroundingDINO import build_groundingdino

def build_model(args):
    model = build_groundingdino(args.GroundingDINO)
    return model