GithubHelp home page GithubHelp logo

cartoecho / luojianet Goto Github PK

View Code? Open in Web Editor NEW

This project forked from whuluojiateam/luojianet

0.0 0.0 0.0 201.61 MB

Home Page: http://58.48.42.237/luojiaNet/

License: Apache License 2.0

Shell 0.51% C++ 64.13% Python 26.99% C 4.55% Objective-C 0.01% Java 0.58% Assembly 0.78% Objective-C++ 0.01% Cuda 1.58% Makefile 0.08% HTML 0.01% QML 0.02% CMake 0.77% Batchfile 0.01% Terra 0.01%

luojianet's Introduction

LuoJiaNet介绍

遥感专用机器学习框架LuoJiaNET,由武汉大学LuoJiaNET框架团队与华为MindSpore框架研究小组联合打造而成, 是遥感领域首个国产化自主可控的遥感专用机器学习框架,针对遥感数据像幅尺寸大、数据通道多、尺度变化大等特性, 具备内存可扩展、尺度通道灵活创建、数据通道自主优选、框架与数据协同处理的特点。可兼容已有深度学习框架, 并提供用户友好的、可拖拽的交互式网络结构搭建界面的方法。能屏蔽不同硬件设备间差异,同时管理多样化的遥感影像样本库LuoJiaSET, 实现遥多源感影像样本的高效存储管理。

LuoJiaNET同时与国产人工智能硬件NPU深度融合,可同时支持CPU、GPU、NPU等硬件资源,使智能计算软硬件充分协同,形成融合探测机理与地学知识的统一计算图表达、编译优化、图算融合、 自动混合并行的新一代遥感智能解译框架,可进行遥感样本自动提纯与增广,充分融合探测机理与地学知识。

昇腾全栈

  1. 请参照LuoJiaNet安装手册 安装whl包或源码编译安装

  2. 执行以下命令,验证安装结果。

    import numpy as np
    import luojianet_ms.context as context
    import luojianet_ms.nn as nn
    from luojianet_ms import Tensor
    from luojianet_ms.ops import operations as P
    
    context.set_context(mode=context.GRAPH_MODE, device_target="CPU")
    
    class Mul(nn.Module):
        def __init__(self):
            super(Mul, self).__init__()
            self.mul = P.Mul()
    
        def call(self, x, y):
            return self.mul(x, y)
    
    x = Tensor(np.array([1.0, 2.0, 3.0]).astype(np.float32))
    y = Tensor(np.array([4.0, 5.0, 6.0]).astype(np.float32))
    
    mul = Mul()
    print(mul(x, y))
    [ 4. 10. 18.]
    
  3. LuoJiaNET安装手册中,相应的源码见tutorial

版本说明

版本说明请参阅RELEASE

许可证

Apache License 2.0

luojianet's People

Contributors

mizhangwhuer avatar whulwb avatar tulilin avatar zhangzhan-whu avatar zhonin avatar yangpanhzau avatar adhuan avatar faye0078 avatar giser-wb avatar nicholasyanghaoran avatar shuicaixi avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.