All Projects → Islanna → Dynamicrelu

Islanna / Dynamicrelu

Implementation of Dynamic ReLU on Pytorch

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Dynamicrelu

Lips
Scheme based powerful lisp interpreter written in JavaScript
Stars: ✭ 120 (-29.41%)
Mutual labels:  dynamic
Webpack Require From
Webpack plugin that allows to configure path or URL for fetching dynamic imports
Stars: ✭ 142 (-16.47%)
Mutual labels:  dynamic
Flog
A Simple Blog Powered by Flask
Stars: ✭ 150 (-11.76%)
Mutual labels:  dynamic
Axbaseplugin
Android Plugin Framework
Stars: ✭ 122 (-28.24%)
Mutual labels:  dynamic
Jamesdspmanager
Audio DSP effects build on Android system framework layer. This is a repository contains a pack of high quality DSP algorithms specialized for audio processing.
Stars: ✭ 136 (-20%)
Mutual labels:  dynamic
Ultimate Java Resources
Java programming. All in one Java Resource for learning. Updated every day and up to date. All Algorithms and DS along with Development in Java. Beginner to Advanced. Join the Discord link.
Stars: ✭ 143 (-15.88%)
Mutual labels:  dynamic
Swiftfortunewheel
The ultimate spinning wheel view that supports dynamic content and rich customization.
Stars: ✭ 114 (-32.94%)
Mutual labels:  dynamic
Supertextview
🎀 SuperTextView for Android 是一个在TextView的基础上扩展了几种动画效果的控件。
Stars: ✭ 165 (-2.94%)
Mutual labels:  dynamic
Frida All In One
《FRIDA操作手册》by @hluwa @r0ysue
Stars: ✭ 1,990 (+1070.59%)
Mutual labels:  dynamic
Repaper
Desktop that changes based on weather & time
Stars: ✭ 148 (-12.94%)
Mutual labels:  dynamic
Runtime
An Objective-C simulator written in Swift.
Stars: ✭ 125 (-26.47%)
Mutual labels:  dynamic
Pysnn
Efficient Spiking Neural Network framework, built on top of PyTorch for GPU acceleration
Stars: ✭ 129 (-24.12%)
Mutual labels:  dynamic
Require Vuejs
RequireJS plugin to async and dynamic load and parse .vue components
Stars: ✭ 143 (-15.88%)
Mutual labels:  dynamic
Plasma5 Wallpapers Dynamic
Dynamic wallpaper plugin for KDE Plasma
Stars: ✭ 122 (-28.24%)
Mutual labels:  dynamic
Titiler
A dynamic Web Map tile server
Stars: ✭ 153 (-10%)
Mutual labels:  dynamic
Vectormaster
Dynamic control over vector drawables!
Stars: ✭ 1,540 (+805.88%)
Mutual labels:  dynamic
React Native Wormhole
⚛️ 🌌 Inter-dimensional Portals for React Native. 👽 🖖
Stars: ✭ 133 (-21.76%)
Mutual labels:  dynamic
Vecty
Vecty lets you build responsive and dynamic web frontends in Go using WebAssembly, competing with modern web frameworks like React & VueJS.
Stars: ✭ 2,161 (+1171.18%)
Mutual labels:  dynamic
Goloader
load and run golang code at runtime.
Stars: ✭ 159 (-6.47%)
Mutual labels:  dynamic
Enviews
🌟A cool dynamic view library
Stars: ✭ 1,771 (+941.76%)
Mutual labels:  dynamic

DynamicReLU

Implementation of Dynamic ReLU(types A,B) on Pytorch.

Example

import torch.nn as nn
from dyrelu import DyReluB

class Model(nn.Module):
    def __init__(self):
        super(Model, self).__init__()
        self.conv1 = nn.Conv2d(3, 10, 5)
        self.relu = DyReLUB(10, conv_type='2d')

    def forward(self, x):
        x = self.conv1(x)
        x = self.relu(x)
        return x
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].