mlreef
1.0.0
機器學習的協作平台
MLREEF是一個開源ML-OPS平台,可幫助您與數千名其他用戶協作,複製和共享機器學習工作。
重要的是:我們不再支持和更新此存儲庫。我們仍在積極地從事這個項目,但在Gitlab的主要回購。
MLREEF是一個包含四個主要部分的ML/DL開發平台:
註冊並在幾分鐘內開始實驗。
要了解有關MLREEF如何簡化機器學習開發生命週期的更多信息,請訪問我們的主頁

通過ArgParse添加參數...
# Example params for a ResNet50 script
def process_arguments ( args ):
parser = argparse . ArgumentParser ( description = 'ResNet50' )
parser . add_argument ( '--input-path' , action = 'store' , help = 'path to directory of images' )
parser . add_argument ( '--output-path' , action = 'store' , default = '.' , help = 'path to output metrics' )
parser . add_argument ( '--height' , action = 'store' , default = 224 , help = 'height of images (int)' )
parser . add_argument ( '--width' , action = 'store' , default = 224 , help = 'width of images (int)' )
parser . add_argument ( '--channels' , action = 'store' , default = 3 , help = 'channels of images: 1 = grayscale, 3 = RGB ,'
'4=RGBA (int)' )
parser . add_argument ( '--use-pretrained' , action = 'store' , default = True , help = 'use pretrained ResNet50 weights (bool)' )
parser . add_argument ( '--epochs' , action = 'store' , default = 5 , help = 'number of epochs for training' )
parser . add_argument ( '--batch-size' , action = 'store' , default = 32 , help = 'batch size fed to the neural network (int)' )
parser . add_argument ( '--validation-split' , action = 'store' , default = .25 , help = 'fraction of images to be used for '
'validation (float)' )
parser . add_argument ( '--class-mode' , action = 'store' , default = 'binary' , help = '"categorical", "binary", "sparse",'
' "input", or None' )
parser . add_argument ( '--learning-rate' , action = 'store' , default = 0.0001 ,
help = 'learning rate of Adam Optimizer (float)'
'' )
parser . add_argument ( '--loss' , action = 'store' , default = 'sparse_categorical_crossentropy' , help = 'loss function used to'
' compile model' )
params = vars ( parser . parse_args ( args ))
return params...發布您的腳本可為您提供以下內容:
ML生命週期內的MLREEF ML成分:

MLREEF是我們解決與機器學習/深度學習宇宙中無數其他研究人員和開發人員分享的問題的解決方案:培訓生產級深度學習模型是一個糾結的過程。 MLREEF通過關聯代碼版本控制,研究項目,績效指標和模型出處來跟踪和控製過程。
我們設計了最佳數據科學實踐的MLREEF,再加上從DevOps中獲得的知識,並深深地關注協作。

開始開發,繼續開髮指南
所有開發發生的MLREEF的規範來源託管在gitlab.com/mlreef/mlreef上。
麻省理工學院許可證(有關更多信息,請參見許可證)
官方文檔和YouTube中的更多信息。
有關示例和用例,請檢查這些用例或在註冊後啟動教程:
如果您有任何疑問:在我們的Slack頻道上發布,或使用“ mlreef”標籤在Stackoverflow上標記您的問題。
有關功能請求或錯誤報告,請使用GitLab問題。
此外,您隨時可以通過[email protected]與我們聯繫
始終歡迎合併請求❤️在MLREEF貢獻指南中查看更多詳細信息。