Spaces:
				
			
			
	
			
			
		Runtime error
		
	
	
	
			
			
	
	
	
	
		
		
		Runtime error
		
	Upload 4 files
Browse files- data_info/__init__.py +2 -0
 - data_info/pretrained_weight.py +16 -0
 - data_info/public_datasets.py +7 -0
 - weight/新建文本文档.txt +0 -0
 
    	
        data_info/__init__.py
    ADDED
    
    | 
         @@ -0,0 +1,2 @@ 
     | 
|
| 
         | 
|
| 
         | 
| 
         | 
|
| 1 | 
         
            +
            from .public_datasets import *
         
     | 
| 2 | 
         
            +
            from .pretrained_weight import *
         
     | 
    	
        data_info/pretrained_weight.py
    ADDED
    
    | 
         @@ -0,0 +1,16 @@ 
     | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
| 
         | 
|
| 1 | 
         
            +
             
     | 
| 2 | 
         
            +
            mldb_info={}
         
     | 
| 3 | 
         
            +
             
     | 
| 4 | 
         
            +
            mldb_info['checkpoint']={
         
     | 
| 5 | 
         
            +
                'mldb_root': '/mnt/nas/share/home/xugk/ckpt', # NOTE: modify it to the pretrained ckpt root
         
     | 
| 6 | 
         
            +
             
     | 
| 7 | 
         
            +
                # pretrained weight for convnext
         
     | 
| 8 | 
         
            +
                'convnext_tiny': 'convnext/convnext_tiny_22k_1k_384.pth',
         
     | 
| 9 | 
         
            +
                'convnext_small': 'convnext/convnext_small_22k_1k_384.pth',
         
     | 
| 10 | 
         
            +
                'convnext_base': 'convnext/convnext_base_22k_1k_384.pth',
         
     | 
| 11 | 
         
            +
                'convnext_large': 'convnext/convnext_large_22k_1k_384.pth',
         
     | 
| 12 | 
         
            +
                'vit_large': 'vit/dinov2_vitl14_pretrain.pth',
         
     | 
| 13 | 
         
            +
                'vit_small_reg': 'vit/dinov2_vits14_reg4_pretrain.pth',
         
     | 
| 14 | 
         
            +
                'vit_large_reg': 'vit/dinov2_vitl14_reg4_pretrain.pth',
         
     | 
| 15 | 
         
            +
                'vit_giant2_reg': 'vit/dinov2_vitg14_reg4_pretrain.pth',
         
     | 
| 16 | 
         
            +
            }
         
     | 
    	
        data_info/public_datasets.py
    ADDED
    
    | 
         @@ -0,0 +1,7 @@ 
     | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
| 
         | 
|
| 1 | 
         
            +
            mldb_info = {}
         
     | 
| 2 | 
         
            +
             
     | 
| 3 | 
         
            +
            mldb_info['NYU']={
         
     | 
| 4 | 
         
            +
                'mldb_root': '/mnt/nas/share/home/xugk/data/',
         
     | 
| 5 | 
         
            +
                'data_root': 'nyu',
         
     | 
| 6 | 
         
            +
                'test_annotations_path': 'nyu/test_annotation.json',
         
     | 
| 7 | 
         
            +
            }
         
     | 
    	
        weight/新建文本文档.txt
    ADDED
    
    | 
         
            File without changes
         
     |