我有两个csv文件,其中包含userid,movieid,tags。tags列包含喜剧领域的电影类型。我需要喜剧和喜剧的相关标签之间的相似性。我想把文件转换成字符串来计算余弦相似性。
代码
val lines = scala.io.Source.fromFile("file:///usr/local/spark/dataset/algorithm3/comedy").getLines.mkString
val lines2=scala.io.Source.fromFile("file:///usr/local/spark/dataset/algorithm3/funny").getLines().mkString("\n")
import java.nio.file.Files
import java.nio.file.Paths
val result=textCosine(lines,lines2)
println("The cosine similarity score: "+result)
}
/**
* Modular length of the vector
* @param vec
*/
def module(vec:Vector[Double]): Double ={
// math.sqrt( vec.map(x=>x*x).sum )
math.sqrt(vec.map(math.pow(_,2)).sum)
}
/**
* Find the inner product of two vectors
* @param v1
* @param v2
*/
def innerProduct(v1:Vector[Double],v2:Vector[Double]): Double ={
val listBuffer=ListBuffer[Double]()
for(i<- 0 until v1.length; j<- 0 until v2.length;if i==j){
if(i==j){
listBuffer.append( v1(i)*v2(j) )
}
}
listBuffer.sum
}
/**
* Find the cosine of two vectors
* @param v1
* @param v2
*/
def cosvec(v1:Vector[Double],v2:Vector[Double]):Double ={
val cos=innerProduct(v1,v2) / (module(v1)* module(v2))
if (cos <= 1) cos else 1.0
}
def textCosine(lines:String,lines2:String):Double={
val set=mutable.Set[Char]() //Count all words in two sentences
lines.foreach(set +=_)
lines2.foreach(set +=_)
println(set)
val ints1: Vector[Double] = set.toList.sorted.map(ch => {
lines.count(s => s == ch).toDouble
}).toVector
println("===ints1: "+ints1)
val ints2: Vector[Double] = set.toList.sorted.map(ch => {
lines2.count(s => s == ch).toDouble
}).toVector
println("===ints2: "+ints2)
cosvec(ints1,ints2)
}
}
但是这个错误出现了
Exception in thread "main" java.io.FileNotFoundException: file:/usr/local/spark/dataset/algorithm3/comedy (No such file or directory)
at java.io.FileInputStream.open0(Native Method)
at java.io.FileInputStream.open(FileInputStream.java:195)
at java.io.FileInputStream.<init>(FileInputStream.java:138)
我该怎么解决?
暂无答案!
目前还没有任何答案,快来回答吧!