Code Monkey home page Code Monkey logo

activityrecognition's Introduction

行为识别的一些资料

关于机器学习和迁移学习的资料,请见:机器学习 | 迁移学习


什么是行为感知(行为识别)?

行为识别常用的特征提取方法

近几年国际会议关于行为识别文章与简介

深度学习用于行为识别文章总结 (Deep learning for activity recognition)

深度学习用于行为识别代码 (Deep learning codes)

用智能手机做行为识别文章总结

与位置相关的行为识别文章

迁移学习用于行为识别 (Transfer learning for activity recognition)

我们课题组关于行为识别的文章

我做的行为识别方面的研究总结

我们课题组关于行为识别的文章

课题组研究项目简介

公开数据集整理 (Public datasets for activity recognition)

行为识别特征提取代码 (Codes for feature extraction)

如何参与贡献 Contributing

  • 正常参与:请直接fork、pull都可以
  • 如果要上传文件:请不要直接上传到项目中,否则会造成git版本库过大。正确的方法是上传它的超链接。如果你要上传的文件本身就在网络中(如paper都会有链接),直接上传即可;如果是自己想分享的一些文件、数据等,鉴于国内网盘的情况,请按照如下方式上传:
    • 首先在UPLOAD 直接上传(需要注册账号)
    • 上传成功后,在DOWNLOAD里找到你刚上传的文件,共享链接即可。

Welcome!

[文章版权声明]这篇文档是我开源到github上的,可以遵守相关的开源协议进行使用,如果使用时能加上我的名字就更好了。这个仓库中包含有很多研究者的论文、硕博士论文等,都来源于在网上的下载,我对一些文章都作了注解,有可能会很好地帮助理解。对于这些文章的版权属于相应的出版社。如果作者或出版社有异议,请联系我进行删除(本来应该只放文章链接的,但是由于时间关系来不及)。一切都是为了更好地学术!

activityrecognition's People

Contributors

dimpurr avatar jindongwang avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

activityrecognition's Issues

`fft_shape_kurt`函数没有加return

def fft_shape_kurt(self):
    shape_mean = self.fft_shape_mean()
    np.sum([np.power((x - shape_mean), 4) * self.freq_spectrum[x] - 3
                for x in range(len(self.freq_spectrum))]) / self._freq_sum_

Some questions regarding the source code

To the author of the paper "Stratified Transfer Learning for Cross-domain Activity Recognition.":

I come across your work in cross domain adaptation for activity recognition and find it very interesting to read. I was just wondering, if you have the source code also available in python or pytorch?

Other questions regarding the paper:
1.) Does the source and target domain have the number of samples for each classes?
2.) Should the source and target domain have the same amount of samples?
3.) Do you update the mmd_loss for each batch or the entire dataset?
4.) Can you maybe also share the data with me? I can't find the matlab matrix for dsads.mat.

Thanks for your reply!

Best regards,
Biying

FFT特征提取问题

你好,刚接触信号处理,看了你的代码,对于频域特征提取几点问题想要请教:
1、你有说过窗口大小必须是2的指数倍,傅里叶变换才能才能顺利进行,可在使用python的np.fft函数时并没有体现这一点
2、你在计算形状统计特征的均值时,freq_spectrum分量乘的系数是0,1,2,...n-1,是不是应该乘以1,2,3,,,,n

数据格式问题

王博士,你好

   6轴陀螺仪和加速度计提取特征,数据格式应该是怎么样的呢?

请问`fft_shape_kurt`为什么要减3呢?

def fft_shape_kurt(self):
    shape_mean = self.fft_shape_mean()
    return np.sum([np.power((x - shape_mean), 4) * self.freq_spectrum[x] - 3
                for x in range(len(self.freq_spectrum))]) / self._freq_sum_

Reproducing cross-dataset STL

Hi, how can I reproduce the result for cross-dataset as shown in your STL (percom 18) paper? Is the test run for cross-dataset already in the code somewhere? I coded myself using STL function (in STL.m file), trying DSADS --> PAMAP, the accuracies were always <30% (while it is shown 37.83% in the paper). Here is my attempt:

cross_dsads = load('C:\dataset\crossposition-activity-recognition\cross_dsads.mat');
cross_dsads = cross_dsads.data_dsads;

cross_pamap = load('C:\dataset\crossposition-activity-recognition\cross_pamap.mat');
cross_pamap = cross_pamap.data_pamap;

Xcross_dsads = cross_dsads(:,1:81); %features for torso
ycross_dsads = cross_dsads(:,end);
Xcross_pamap = cross_pamap(:,82:162); %features for chest
ycross_pamap = cross_pamap(:,end);

acc_stl = STL(Xcross_dsads, ycross_dsads, Xcross_pamap, ycross_pamap,30);
fprintf('Acc: %.2f\n',acc_stl);

Do you think I missed something?

In addition, feature_norm is not defined in the "demo.m", when I tried using opportunity dataset.

Thanks,
Aria

test函数有误?

feature_core.py文件中的test()函数有误,将数组a安排成10行1列的数组后,计算数组a的fft只会直接返回a,因为此时是给数组a中每个元素计算一次fft,而不是给全部元素计算一次fft

ActivityRecognition and ActionRecognition

Hello, and I'm sorry for disturbing you.But I really want to know the difference between Activity Recognition and Action Recognition? Could you please show me some lights on?
Thank you so much!~~~

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.