Skip to main content

一些ai开发过程中使用到的工具模块

Project description

aikit

一些ai开发过程中使用到的工具模块

安装

git clone git@github.com:cpcgskill/aikit.git

使用

aos

import os



# 设置以下环境变量为腾讯云cos的配置



os.environ['COS_Region'] = 'ap-hongkong'

os.environ['COS_SecretId'] = ''

os.environ['COS_SecretKey'] = ' '

os.environ['COS_Bucket'] = ' '



import torch

from aidevkit.aos import Saver





class MyModule(torch.nn.Module):

    def __init__(self):

        super(MyModule, self).__init__()

        self.linear = torch.nn.Linear(10, 10)

        self.s = 1



    def forward(self, x):

        return self.linear(x)





saver = Saver(lambda: MyModule(), 'test.pt', 3)

for i in range(10):

    saver.step()

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

aidevkit-0.3.3.tar.gz (9.5 kB view hashes)

Uploaded Source

Built Distribution

aidevkit-0.3.3-py2.py3-none-any.whl (10.1 kB view hashes)

Uploaded Python 2 Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page