亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Detectron2注冊機制Registry實現的示例分析

發布時間:2021-11-15 15:07:30 來源:億速云 閱讀:183 作者:柒染 欄目:大數據

今天就跟大家聊聊有關Detectron2注冊機制Registry實現的示例分析,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結了以下內容,希望大家根據這篇文章可以有所收獲。


Detectron2注冊機制 Registry 實現


在Detectron2 中,經常會對一個類或者函數進行注冊:

Detectron2注冊機制Registry實現的示例分析

關于這種操作,必須要明確兩點:


1.目的

1.1 注冊機制的使用方法

首先來看一下注冊機制是如何使用的:
registry_machine = Registry('registry_machine')
registry_machine.register()def print_hello_world(word):    print('hello {}'.format(word))

registry_machine.register()def print_hi_world(word):    print('hi {}'.format(word))
if __name__ == '__main__':
   cfg1 = 'print_hello_word'    registry_machine.get(cfg1)('world')
   cfg2 = 'print_hi_word'    registry_machine.get(cfg2)('world')

可以看到,如果創建了一個Registry的對象,并在方法/類定義的時候用裝飾器裝飾它,則可以通過 registry_machine.get(方法名)的 辦法來間接的調用被注冊的函數

1.2 為什么使用注冊類

對于detectron2這種,需要支持許多不同的模型的大型框架,理想情況下所有的模型的參數都希望寫在配置文件中,那問題來了,如果我希望根據我的配置文件,決定我是需要用VGG還是用ResNet ,我要怎么寫呢?

如果是我,我可能會寫出這種可擴展性超級低的暴搓的代碼:

if class_name == 'VGG':    model = build_VGG(args)elif class_name == 'ResNet':    model = build_ResNet(args)

但是如果用了注冊類,代碼就是這樣的:

class_name = 'VGG' # 'ResNet'model = model_registry(class_name)(args)
可以看到代碼的可擴展性變得非常強了

2 具體實現細節

這部分就直接展示注冊類的代碼了,有興趣的朋友可以研究一下其中的細節,個人覺得對裝飾器的應用是非常的好了

# Copyright (c) Facebook, Inc. and its affiliates. All Rights Reservedclass Registry(object):
   def __init__(self, name):        """        Args:            name (str): the name of this registry        """        self._name = name
       self._obj_map = {}
   def _do_register(self, name, obj):        assert (            name not in self._obj_map        ), "An object named '{}' was already registered in '{}' registry!".format(name, self._name)        self._obj_map[name] = obj
   def register(self, obj=None):        """        Register the given object under the the name `obj.__name__`.        Can be used as either a decorator or not. See docstring of this class for usage.        """        if obj is None:            # used as a decorator            def deco(func_or_class):                name = func_or_class.__name__                self._do_register(name, func_or_class)                return func_or_class
           return deco
       # used as a function call        name = obj.__name__        self._do_register(name, obj)
   def get(self, name):        ret = self._obj_map.get(name)        if ret is None:            raise KeyError("No object named '{}' found in '{}' registry!".format(name, self._name))        return ret


registry_machine = Registry('registry_machine')
registry_machine.register()def print_hello_world(word):    print('hello {}'.format(word))

registry_machine.register()def print_hi_world(word):    print('hi {}'.format(word))
if __name__ == '__main__':
   cfg1 = 'print_hello_word'    registry_machine.get(cfg1)('world')
   cfg2 = 'print_hi_word'    registry_machine.get(cfg2)('world')

看完上述內容,你們對Detectron2注冊機制Registry實現的示例分析有進一步的了解嗎?如果還想了解更多知識或者相關內容,請關注億速云行業資訊頻道,感謝大家的支持。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

滦南县| 神农架林区| 绥阳县| 新竹市| 平顶山市| 海宁市| 涡阳县| 昆山市| 福州市| 永吉县| 阿合奇县| 延长县| 佛山市| 沂源县| 凤翔县| 绥中县| 泗水县| 疏附县| 克东县| 凤凰县| 陆良县| 怀远县| 蕲春县| 年辖:市辖区| 广东省| 荔浦县| 祁阳县| 眉山市| 白水县| 墨玉县| 江津市| 大悟县| 阿鲁科尔沁旗| 永春县| 瓦房店市| 嵊州市| 河西区| 兰州市| 仁布县| 五莲县| 丰都县|