- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
如果需要计算所有簇中每个其他点的欧几里德距离,我必须检查任何簇是否只有一个点与之关联,最小距离点将被添加到长度为一的簇(具有点关联).在向标签和中心的簇值添加一个点之后需要更新我已经完成了所有的事情但是有时当代码运行时它抛出错误“'NoneType'对象不可迭代”当它必须返回值时.我被这部分卡住了,请帮忙,在此先感谢。这是我的代码
import numpy as np
import matplotlib.pyplot as mlt
import pandas as pd
from clustering import Kmeans_clu
import random
from collections import Counter, defaultdict
from math import sqrt
import matplotlib.pyplot as plt
import random
def ClusterIndicesComp(clustNum, labels_array): # For extracting points from the label
return np.array([i for i, x in enumerate(labels_array) if x == clustNum])
def index(lst, obj, n): # To find the index of of Lable which needs to be change
count = 0
for index, item in enumerate(lst):
if item == obj:
count += 1
if count == n:
return index
raise ValueError('{} is not in list at least {} times'.format(obj, n))
def UpdateCentetr_Label(Index,lablelPlot1, plot2, lablePlot2, pop, plab, plot1, pcenter,cluster1,max_gen):
s = list(plab) #Storing Value of Label in list
print("Value of in Label before\n", s) # Before Updating the value of label
s1 = Counter(s)
print("Value of counter in before is \n", s1)
Index=Index+1
q = index(s, lablePlot2, Index) #Storing the index of label which need to be changed
s[q] = lablelPlot1 #Changing the label by labelPlot1
ulabel = np.array(s)
print("Value of an updated label is \n", ulabel)
print("------------------------------------------")
# print("Value of Pcenter in Updatedlabel\n",pcenter)
ncenter = plot2 + plot1 / 2 #Calculating the center of label which have one point associated
print("Value of new center to be updated\n", ncenter)
ucenter = np.array(pcenter)
#print("Value of ucenter is\n",ucenter)
ucenter[lablelPlot1] = ncenter #Changing the value of label with new center
print("Value of updated center is\n", ucenter)
ko = Counter(ulabel)
print("Value of counter after updated label is\n", ko)
LC1 = [t for (t, v) in ko.items() if v == 1] # Again checking if there is label which have point associated
t1 = np.array(LC1)
if (t1.size):
One_LengthCluster(cluster1, ulabel, ucenter, pop,max_gen) #To update the it again
else:
return ulabel,ucenter,cluster1
def ClusterPopulation(max_gen, population): # to cluster the population
pop = population
plab1 = []
pcenter = []
u=[]
cluster1 = int(input("Enter the cluster for new population\n"))
plab=[]
for i in range(0,max_gen):
if (i % cluster1 == 1): # Checking the condition of Kmeans Clustering
u, label, t, l = Kmeans_clu(cluster1, population) # Storing the values Center(u) anb label(u)
plab1.insert(i, label)
print("Plab is",plab)
pcenter.insert(i, u)
plab = np.array(plab1)
plab=plab[0]
#pcenter=np.array(pcenter)
pcenter=pcenter[0]
ulabel, ucenter, cluster1=One_LengthCluster(cluster1, plab, pcenter, pop,max_gen) #To check if any label has one point associated
return ulabel,ucenter,cluster1 #returning the value of ulabel, ucenter and cluster1
else:
print("Not need of clustering for this generation of\n", i)
def One_LengthCluster(cluster1, plab, pcenter, pop,max_gen):
indexes = []
Index=[] #Store the index of Point which have minimum euclidean distance
D=[] #Store the minimum euclidean distance
labelplot2=[] #Store the Label which have more than 2 points associated
Point2=[] #Store the Point which have minimum euclidean distance
z=[]
Smin=[]
I=[]
L=[]
LC = Counter(plab) #Counting number of points associated with label
print("VAlue of LAbel and Number Cluster Associated with them\n", LC)
LC1 = [t for (t, v) in LC.items() if v == 1]
t1 = np.array(LC1)
if (t1.size):# To check if any of the Label has one point associated if yes than calculate the distance with all the points
for b in range(len(t1)):
plot1 = pop[ClusterIndicesComp(t1[b], plab)] # Extracting the point in the label which have one point associated
print("Point of label one Length PLOT1 is\n", np.array(plot1), t1[b])
z1 = [t for (t, v) in LC.items() if v > 2] # To check distance with label which more than 3 points associated
z = np.array(z1) #Storing the value in the array
for d in range(len(z)):
print("Value of Label which have more than two cluster is\n", z[d])
plot2 = pop[ClusterIndicesComp(z[d], plab)] # Extracting the point in the label more than one point associated
print("Value of plot2 in one length cluster is\n", plot2)
for i in range(len(plot2)):
plotk = plot2[i] # To get one point at a time from plot2
S = np.linalg.norm(np.array(plot1) - np.array(plotk))
print("Distance between {} and {} is {}\n".format(plot1,plotk,S)) # euclidian distance is calculated
if (i == 0):
Smin = S
Sminant = S
indexes.append(i)
else:
if (S < Sminant):
Smin = S
Sminant = Smin
indexes = []
indexes.append(i)
elif (S == Sminant):
indexes = []
indexes.append(i)
#print('indexes:')
print("Index at which the minimum value is stored\n", indexes) # To find the index of Label with which euclidian distance is minimum
for i in range(len(indexes)):
Point2 = plot2[indexes[i]]
I = indexes[i]
L = z[d]
print("VAlues of Point{} which have min distance with plot1 is in Label {} and have Index {} and distance {}\n".format(Point2,L,I,Smin))
if(len(z)==1): #If Label which have more than 2 point associated is only one
D = Smin
Index = indexes[i]
labelplot2=z[d]
Point2=plot2[indexes[i]]
print("Here is the value\n", D, Index, labelplot2, Point2)
ulabel, ucenter, cluster1=UpdateCentetr_Label(Index,t1[b], Point2, z[d], pop, plab, plot1, pcenter,cluster1,max_gen) #After Finding Point now update center and label
return ulabel,ucenter,cluster1
elif (len(z) > 1): #If Label which have more than 2 point associated is more than one
D.append(Smin)
Index.append(I)
labelplot2.append(L)
#print("Value in list are------------\n", labelplot2)
print("Index value is\n",Index)
print("Label value is\n", labelplot2)
z=min(D) #Finding the minimum distance among all the labels
k=D.index(z) #Finding the index where minimum distance is stored in D
Index=Index[k]
labelplot2=labelplot2[k]
Point2 = pop[ClusterIndicesComp(labelplot2, plab)]
Point2=Point2[Index]
print("Value of minimum distance is\n",z,Index,labelplot2,k,Point2)
ulabel, ucenter, cluster1=UpdateCentetr_Label(Index,t1[b], Point2, labelplot2, pop, plab, plot1, pcenter,cluster1,max_gen) #After Finding Point now update center and label
return ulabel,ucenter,cluster1
D=[]
indexes=[]
else: #If no solution have one point associated in the label
print("no lenght 1 cluster\n")
return plab,pcenter,cluster1
population =np.random.rand(10,4) #Generating the random population
max_gen=10 #Giving value of max_gen
ulabel, ucenter, cluster1=ClusterPopulation(max_gen, population) #Taking back the values of ucenter ,ulabel and cluster1
print("Value of ulabel is\n",ulabel)
我的 K-means 代码是这样的
from sklearn.cluster import KMeans
import numpy as np
def Kmeans_clu(K, data):
"""
:param K: Number of cluster
:param data:
:return:
"""
kmeans = KMeans(n_clusters=K, init='random', max_iter=1, n_init=1).fit(data) ##Apply k-means clustering
labels = kmeans.labels_
clu_centres = kmeans.cluster_centers_
z={i: np.where(kmeans.labels_ == i)[0] for i in range(kmeans.n_clusters)} #
return clu_centres, labels ,z,kmeans
回溯是
Traceback (most recent call last):
File "C:/Users/hp/AppData/Local/Programs/Python/Python36/Population Clustering.py", line 184, in <module>
ulabel, ucenter, cluster1=ClusterPopulation(max_gen, population) #Taking back the values of ucenter ,ulabel and cluster1
File "C:/Users/hp/AppData/Local/Programs/Python/Python36/Population Clustering.py", line 85, in ClusterPopulation
ulabel, ucenter, cluster1=One_LengthCluster(cluster1, plab, pcenter, pop,max_gen) #To check if any label has one point associated
File "C:/Users/hp/AppData/Local/Programs/Python/Python36/Population Clustering.py", line 169, in One_LengthCluster
ulabel, ucenter, cluster1=UpdateCentetr_Label(Index,t1[b], Point2, labelplot2, pop, plab, plot1, pcenter,cluster1,max_gen) #After Finding Point now update center and label
File "C:/Users/hp/AppData/Local/Programs/Python/Python36/Population Clustering.py", line 54, in UpdateCentetr_Label
One_LengthCluster(cluster1, ulabel, ucenter, pop,max_gen) #To update the it again
File "C:/Users/hp/AppData/Local/Programs/Python/Python36/Population Clustering.py", line 169, in One_LengthCluster
ulabel, ucenter, cluster1=UpdateCentetr_Label(Index,t1[b], Point2, labelplot2, pop, plab, plot1, pcenter,cluster1,max_gen) #After Finding Point now update center and label
TypeError: 'NoneType' object is not iterable
最佳答案
我认为您只是在 UpdateCentetr_Label
函数中遗漏了一个 return
语句,该语句强制函数返回 None
而实际上不是可迭代:
def UpdateCentetr_Label(Index,lablelPlot1, plot2, lablePlot2, pop, plab, plot1, pcenter,cluster1,max_gen):
# other code here...
if (t1.size):
return One_LengthCluster(cluster1, ulabel, ucenter, pop,max_gen) #To update the it again
关于python - 返回值时“NoneType”对象不可迭代,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50942006/
我目前正在尝试定义函数,但遇到了这个错误。我只是想做一个简单的函数,用户输入 2 个数字,然后将它们相乘。也请尽可能简单地解释我做错了什么。 (我是菜鸟) def userinput(): w
使用IPtools python 包我试图查看 IP 地址是否在特定范围内。这是我的代码: for line in g: org= line.split("|")[0] ranges
输入 [['1','2','3'],['a','b','c'],['6','7','8'],['e','f','g']] 输出应该是: 1, 2, 3a, b, c6, 7, 8e, f, g Cod
我目前正在使用 lambda 使 tkinter 按钮依次执行两件事: def classManip(): cManip = tk.Toplevel() cManip.title
我正在学习Python,作为练习,我编写了一些代码来查找用户定义函数的导数。代码如下。 def fx(value, function): x = value return eval(f
使用 Django。我有以下模型: class Postagem(models.Model): id = models.AutoField(primary_key=True, editable=Fal
我正在尝试为给定的数据集选择重要的特征(或者至少了解哪些特征解释更多的变异性)。为此,我使用 ExtraTreesClassifier 和 GradientBoostingRegressor - 然后
刚刚获得了SDXL模型的访问权限,希望为即将发布的版本进行测试...不幸的是,我们当前用于我们服务的代码似乎不能与稳定ai/稳定-扩散-xl-base-0.9一起工作,我不完全确定SDXL有什么不同,
通常,当我尝试使用BeautifulSoup解析网页时,BeautifulSoup函数会得到NONE结果,否则就会引发AttributeError。。以下是一些独立的(即,由于数据是硬编码的,不需要访
通常,当我尝试使用BeautifulSoup解析网页时,BeautifulSoup函数会得到NONE结果,否则就会引发AttributeError。。以下是一些独立的(即,由于数据是硬编码的,不需要访
我想遍历可迭代列表,但要求某些元素的类型可以是 None。 这看起来像这样: none_list = [None, [0, 1]] for x, y in none_list: print("
我得到object is not subscriptable在非空查询结果上。当我打印时 c.fetchone()它打印了正确的结果,但是当我检查类型时它显示 import sqlite3 conn
我在第 15 行收到此错误,但我不明白为什么。有任何想法吗?看来属性已经明确定义了,所以我完全不知所措。任何帮助将非常感激。AttributeError:“NoneType”对象没有属性“Sheets
我尝试对 Chrome WebDriver 进行子类化以包含一些初始化和清理代码,但随后 Python 提示创建的对象设置为 None: import glob import selenium imp
这个问题已经有答案了: Why do I get AttributeError: 'NoneType' object has no attribute 'something'? (10 个回答) 已关
这个问题已经有答案了: Why does the print function return None? (1 个回答) 已关闭 6 年前。 我对 Python 还很陌生。我正在制作一个生成器,可以为
我正在尝试比较两个表( table_a 和 table_b )并减去 table_a 的最后一列从table_b的最后一列开始。但是,table_a 包含一个额外的行,导致我得到 NoneType错误
当“文件名”是一个存在的文件时,这段代码运行良好……但是当它不存在时……我不断收到同样的错误:TypeError: 'NoneType' 对象不可迭代 (Errno 2) 尽管我从不迭代任何东西,除非
我在下面的代码中收到“NoneType”对象不可迭代的 TypeError。下面的代码用于使用 pyautogui 滚动 digits 文件夹中的 10 张图像(命名为 0 到 9,以图像中的 # 命
我有一段代码表现得很奇怪。 一开始,我导入了一个模块,它是 C 库的 python 绑定(bind)。 try: import pyccn except: print "ERROR:
我是一名优秀的程序员,十分优秀!