معرفی شرکت ها


django-ndarrayfield-1.0.0rc4


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

Yet another numpy ndarray fields for Django
ویژگی مقدار
سیستم عامل -
نام فایل django-ndarrayfield-1.0.0rc4
نام django-ndarrayfield
نسخه کتابخانه 1.0.0rc4
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Aurélien Moreau
ایمیل نویسنده aurelien.moreau@yienyien.net
آدرس صفحه اصلی https://github.com/ORTHOIN3D/django-ndarrayfield
آدرس اینترنتی https://pypi.org/project/django-ndarrayfield/
مجوز -
# django-ndarrayfield New Django field to store numpy ndarray. ## Description Store a numpy n-dimensional array in database (compatible with all database backend). Use numpy save/load, you can define a shape (not required), and a dtype (default float32). ## Usage ```python import numpy as np from django.db import models from ndarraydjango.fields import NDArrayField class MyModel(models.Model): vec1 = NDArrayField(shape=(32, 4), dtype=np.float64) date = models.DateTimeField(auto_now_add=True) ``` ## Parameters * **dtype**: the ndarray dtype (default np.float32) * **shape**: the ndarray shape (default None) * **binary_serialize**: when dump data, serialize to binary (base64) or json lists (default False) ## Warning This field type does not replace a static file storage. The main goal is to store parameter data, results of algorithms and small and medium machine learning models. A good indication is the shape of the nd-array. It would be static, and with a reasonable size. The overrall data size should not exceed 1mb. For example a field of 300x400 of 2 float32 value ( (300, 400, 2) dtype=float32) should be a maximum.


زبان مورد نیاز

مقدار نام
>=3.6 Python


نحوه نصب


نصب پکیج whl django-ndarrayfield-1.0.0rc4:

    pip install django-ndarrayfield-1.0.0rc4.whl


نصب پکیج tar.gz django-ndarrayfield-1.0.0rc4:

    pip install django-ndarrayfield-1.0.0rc4.tar.gz