7 research outputs found

    Real-Time Feedback Control for Knee Prosthesis using Motion Fusion Algorithm in 6-DOF IMU

    Get PDF
    213-215Stump angle measurement (SAM) system was developed and tested for its use in the development of a low cost electronic knee prosthesis using an accelerometer to measure “tilt” angle of the residual stump during various phases of gait. This system provided real time feedback to control the actuator position for covering a wide range of mobility for the above knee amputees. However, this system is prone to high frequency noise resulting from gait events. These “noise” spikes triggered false threshold values resulting in incorrect operation of the actuator. In the proposed design, a 6-degree of freedom (6-DOF) sensor replaces the accelerometer from previous design. The modified algorithm uses complimentary filter to process the data from inertial measurement units (IMU). This new system produces sensitive yet smoother output, removing the drawbacks of the earlier system. This paper reports the comparative analysis of the SAM system using 6-DOF and accelerometer. These results using 6-DOF sensor will assist in the further development of an intelligent feedback system for low cost active prosthetic leg

    Real-Time Feedback Control for Knee Prosthesis using Motion Fusion Algorithm in 6-DOF IMU

    Get PDF
    Stump angle measurement (SAM) system was developed and tested for its use in the development of a low cost electronic knee prosthesis using an accelerometer to measure “tilt” angle of the residual stump during various phases of gait. This system provided real time feedback to control the actuator position for covering a wide range of mobility for the above knee amputees. However, this system is prone to high frequency noise resulting from gait events. These “noise” spikes triggered false threshold values resulting in incorrect operation of the actuator. In the proposed design, a 6-degree of freedom (6-DOF) sensor replaces the accelerometer from previous design. The modified algorithm uses complimentary filter to process the data from inertial measurement units (IMU). This new system produces sensitive yet smoother output, removing the drawbacks of the earlier system. This paper reports the comparative analysis of the SAM system using 6-DOF and accelerometer. These results using 6-DOF sensor will assist in the further development of an intelligent feedback system for low cost active prosthetic leg

    Optimal Mixed Tracking/Impedance Control With Application to Transfemoral Prostheses With Energy Regeneration

    Get PDF
    We design an optimal passivitybased tracking/impedance control system for a robotic manipulator with energy regenerative electronics, where the manipulator has both actively and semi-actively controlled joints. The semi-active joints are driven by a regenerative actuator that includes an energy-storing element. Method: External forces can have a large influence on energy regeneration characteristics. Impedance control is used to impose a desired relationship between external forces and deviation from reference trajectories. Multi-objective optimization (MOO) is used to obtain optimal impedance parameters and control gains to compromise between the two conflicting objectives of trajectory tracking and energy regeneration. We solve the MOO problem under two different scenarios: 1) constant impedance; and 2) timevarying impedance. Results: The methods are applied to a transfemoral prosthesis simulation with a semi-active knee joint. Normalized hypervolume and relative coverage are used to compare Pareto fronts, and these two metrics show that time-varying impedance provides better performance than constant impedance. The solution with time-varying impedance with minimum tracking error (0.0008 rad) fails to regenerate energy (loses 9.53 J), while a solution with degradation in tracking (0.0452 rad) regenerates energy (gains 270.3 J). A tradeoff solution results in fair tracking (0.0178 rad) and fair energy regeneration (131.2 J). Conclusion: Our experimental results support the possibility of net energy regeneration at the semi-active knee joint with human-like tracking performance. Significance: The results indicate that advanced control and optimization of ultracapacitor-based systems can significantly reduce power requirements in transfemoral prostheses

    Energy-Efficient Recurrent Neural Network Accelerators for Real-Time Inference

    Full text link
    Over the past decade, Deep Learning (DL) and Deep Neural Network (DNN) have gone through a rapid development. They are now vastly applied to various applications and have profoundly changed the life of hu- man beings. As an essential element of DNN, Recurrent Neural Networks (RNN) are helpful in processing time-sequential data and are widely used in applications such as speech recognition and machine translation. RNNs are difficult to compute because of their massive arithmetic operations and large memory footprint. RNN inference workloads used to be executed on conventional general-purpose processors including Central Processing Units (CPU) and Graphics Processing Units (GPU); however, they have un- necessary hardware blocks for RNN computation such as branch predictor, caching system, making them not optimal for RNN processing. To accelerate RNN computations and outperform the performance of conventional processors, previous work focused on optimization methods on both software and hardware. On the software side, previous works mainly used model compression to reduce the memory footprint and the arithmetic operations of RNNs. On the hardware side, previous works also designed domain-specific hardware accelerators based on Field Pro- grammable Gate Arrays (FPGA) or Application Specific Integrated Circuits (ASIC) with customized hardware pipelines optimized for efficient pro- cessing of RNNs. By following this software-hardware co-design strategy, previous works achieved at least 10X speedup over conventional processors. Many previous works focused on achieving high throughput with a large batch of input streams. However, in real-time applications, such as gaming Artificial Intellegence (AI), dynamical system control, low latency is more critical. Moreover, there is a trend of offloading neural network workloads to edge devices to provide a better user experience and privacy protection. Edge devices, such as mobile phones and wearable devices, are usually resource-constrained with a tight power budget. They require RNN hard- ware that is more energy-efficient to realize both low-latency inference and long battery life. Brain neurons have sparsity in both the spatial domain and time domain. Inspired by this human nature, previous work mainly explored model compression to induce spatial sparsity in RNNs. The delta network algorithm alternatively induces temporal sparsity in RNNs and can save over 10X arithmetic operations in RNNs proven by previous works. In this work, we have proposed customized hardware accelerators to exploit temporal sparsity in Gated Recurrent Unit (GRU)-RNNs and Long Short-Term Memory (LSTM)-RNNs to achieve energy-efficient real-time RNN inference. First, we have proposed DeltaRNN, the first-ever RNN accelerator to exploit temporal sparsity in GRU-RNNs. DeltaRNN has achieved 1.2 TOp/s effective throughput with a batch size of 1, which is 15X higher than its related works. Second, we have designed EdgeDRNN to accelerate GRU-RNN edge inference. Compared to DeltaRNN, EdgeDRNN does not rely on on-chip memory to store RNN weights and focuses on reducing off-chip Dynamic Random Access Memory (DRAM) data traffic using a more scalable architecture. EdgeDRNN have realized real-time inference of large GRU-RNNs with submillisecond latency and only 2.3 W wall plug power consumption, achieving 4X higher energy efficiency than commercial edge AI platforms like NVIDIA Jetson Nano. Third, we have used DeltaRNN to realize the first-ever continuous speech recognition sys- tem with the Dynamic Audio Sensor (DAS) as the front-end. The DAS is a neuromorphic event-driven sensor that produces a stream of asyn- chronous events instead of audio data sampled at a fixed sample rate. We have also showcased how an RNN accelerator can be integrated with an event-driven sensor on the same chip to realize ultra-low-power Keyword Spotting (KWS) on the extreme edge. Fourth, we have used EdgeDRNN to control a powered robotic prosthesis using an RNN controller to replace a conventional proportional–derivative (PD) controller. EdgeDRNN has achieved 21 μs latency of running the RNN controller and could maintain stable control of the prosthesis. We have used DeltaRNN and EdgeDRNN to solve these problems to prove their value in solving real-world problems. Finally, we have applied the delta network algorithm on LSTM-RNNs and have combined it with a customized structured pruning method, called Column-Balanced Targeted Dropout (CBTD), to induce spatio-temporal sparsity in LSTM-RNNs. Then, we have proposed another FPGA-based accelerator called Spartus, the first RNN accelerator that exploits spatio- temporal sparsity. Spartus achieved 9.4 TOp/s effective throughput with a batch size of 1, the highest among present FPGA-based RNN accelerators with a power budget around 10 W. Spartus can complete the inference of an LSTM layer having 5 million parameters within 1 μs

    Proceedings SIAMOC 2019

    Get PDF
    Il congresso annuale della Società Italiana di Analisi del Movimento in Clinica, giunto quest'anno alla sua ventesima edizione, ritorna a Bologna, che già ospitò il terzo congresso nazionale nel 2002. Il legame tra Bologna e l'analisi del movimento è forte e radicato, e trova ampia linfa sia nel contesto accademico che nel ricco panorama di centri clinici d'eccellenza. Il congresso SIAMOC, come ogni anno, è l’occasione per tutti i professionisti dell’ambito clinico, metodologico ed industriale di incontrarsi, presentare le proprie ricerche e rimanere aggiornati sulle più recenti innovazioni nell’ambito dell’applicazione clinica dei metodi di analisi del movimento. Questo ha contribuito, in questi venti anni, a fare avanzare sensibilmente la ricerca italiana nel settore, conferendole un respiro ed un impatto internazionale, e a diffonderne l'applicazione clinica per migliorare la valutazione dei disordini motori, aumentare l'efficacia dei trattamenti attraverso l'analisi quantitativa dei dati e una più focalizzata pianificazione dei trattamenti, ed inoltre per quantificare i risultati delle terapie correnti

    Proceedings SIAMOC 2019

    Get PDF
    Il congresso annuale della Società Italiana di Analisi del Movimento in Clinica, giunto quest'anno alla sua ventesima edizione, ritorna a Bologna, che già ospitò il terzo congresso nazionale nel 2002. Il legame tra Bologna e l'analisi del movimento è forte e radicato, e trova ampia linfa sia nel contesto accademico che nel ricco panorama di centri clinici d'eccellenza. Il congresso SIAMOC, come ogni anno, è l’occasione per tutti i professionisti dell’ambito clinico, metodologico ed industriale di incontrarsi, presentare le proprie ricerche e rimanere aggiornati sulle più recenti innovazioni nell’ambito dell’applicazione clinica dei metodi di analisi del movimento. Questo ha contribuito, in questi venti anni, a fare avanzare sensibilmente la ricerca italiana nel settore, conferendole un respiro ed un impatto internazionale, e a diffonderne l'applicazione clinica per migliorare la valutazione dei disordini motori, aumentare l'efficacia dei trattamenti attraverso l'analisi quantitativa dei dati e una più focalizzata pianificazione dei trattamenti, ed inoltre per quantificare i risultati delle terapie correnti

    Epidemiology of Injury in English Women's Super league Football: A Cohort Study

    Get PDF
    INTRODUCTION: The epidemiology of injury in male professional football has been well documented (Ekstrand, Hägglund, & Waldén, 2011) and used as a basis to understand injury trends for a number of years. The prevalence and incidence of injuries occurring in womens super league football is unknown. The aim of this study is to estimate the prevalence and incidence of injury in an English Super League Women’s Football squad. METHODS: Following ethical approval from Leeds Beckett University, players (n = 25) signed to a Women’s Super League Football club provided written informed consent to complete a self-administered injury survey. Measures of exposure, injury and performance over a 12-month period was gathered. Participants were classified as injured if they reported a football injury that required medical attention or withdrawal from participation for one day or more. Injuries were categorised as either traumatic or overuse and whether the injury was a new injury and/or re-injury of the same anatomical site RESULTS: 43 injuries, including re-injury were reported by the 25 participants providing a clinical incidence of 1.72 injuries per player. Total incidence of injury was 10.8/1000 h (95% CI: 7.5 to 14.03). Participants were at higher risk of injury during a match compared with training (32.4 (95% CI: 15.6 to 48.4) vs 8.0 (95% CI: 5.0 to 10.85)/1000 hours, p 28 days) of which there were three non-contact anterior cruciate ligament (ACL) injuries. The epidemiological incidence proportion was 0.80 (95% CI: 0.64 to 0.95) and the average probability that any player on this team will sustain at least one injury was 80.0% (95% CI: 64.3% to 95.6%) CONCLUSION: This is the first report capturing exposure and injury incidence by anatomical site from a cohort of English players and is comparable to that found in Europe (6.3/1000 h (95% CI 5.4 to 7.36) Larruskain et al 2017). The number of ACL injuries highlights a potential injury burden for a squad of this size. Multi-site prospective investigations into the incidence and prevalence of injury in women’s football are require
    corecore