-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
High level image classification module #2
Comments
One will be provided in the examples, but I want to avoid having large model binaries in the basic package. A downloader should do the trick for the most part. |
what about git lfs? i think there's a 1GB quota for free accounts. |
Indeed. There is a limit on the size of a Nuget, maybe 250MB, that I want to stay under too, but it may be alright. There are a couple different models that could be particularly helpful. Resnet34 which is both relatively small (~70MB) and very accurate, and VGG/16/19 which is around 500MB, is not as accurate as Resnet, but has other important uses, such as Style Transfer for unpicking the semantics of an image, I'll have a look at other forms of storage first, but will try to move ahead on this. |
sorry, i misread your comment and was thinking that you want to have the repo small, but you're talking about the nuget which is a separate issue. in this case, i don't think any large files should be included in the nuget. i'd prefer smth. like this and download files in runtime. |
Good example. Yeah I have something very similar in the VLMLDemos, but I'll make it a dependency for the main package so I can update it separately. Thanks for mentioning! |
Need to finish the high-level module you have for training image classification.
The text was updated successfully, but these errors were encountered: