paulgay

Results 3 comments of paulgay

Hi, what do you think about this (maybe old) code? https://github.com/kentcz/rapl-tools I am not working with AMD but I am facing a similar problem on a 11th Gen Intel(R) Core(TM)...

Hi, same issue here, did you find any solution ? I notice that networkx enable access to the hierarchy with the louvain algorithm ``` dendogram = nx.algorithms.community.louvain.louvain_partitions(G, resolution=resolution) coms =...

Here is a minimum example with captum and sentence classification Hope this help : ``` import torch from transformers import AutoModelForSequenceClassification, AutoTokenizer model_name = "citizenlab/twitter-xlm-roberta-base-sentiment-finetunned" model = AutoModelForSequenceClassification.from_pretrained(model_name) model.eval() model.zero_grad()...