Questions tagged [svc]

This tag is ambiguous. Consider using the video-encoding tag for Scalable Video Coding, or the wcf and/or iis tags for the Microsoft file extension.

This tag is ambiguous. Consider using for Scalable Video Coding, and/or for the Microsoft file extension, or for the machine learning model

SVC can refer to:

  • Scalable Video Coding, a video compression standard used by H.264/MPEG-4 AVC.

  • The .svc file extension used by Microsoft's Internet Information Services to represent a service host instance.

  • A common abbreviation for the supervisor mode of a processor.

  • Support Vector Classifier, a machine learning model (with a common implementation in scikit-learn).

225 questions
0
votes
2 answers

get websites in Sharepoint sitecollection by wcf

I want to read out websites (titel) in a sitecollection in Sharepoint 2010 (by svc). I get the listinfo by "listdata.svc" (http://www.xxx/websites/Web1Site/_vti_bin/Listdata.svc). How I get the websites? I am looking for a good source about using…
Rotaney
  • 247
  • 1
  • 3
  • 17
0
votes
0 answers

No protocol binding matches the given address for WCF-service

I am running a website (ASP.Net 4) using IIS6. I get the following error message when I try to run a svc-service: No protocol binding matches the given address …
Anders Branderud
  • 1,878
  • 6
  • 29
  • 45
0
votes
1 answer

Is there a way to add WCF svc-less activation with multiple service Activations?

Given the following configuration:
brumScouse
  • 3,166
  • 1
  • 24
  • 38
0
votes
1 answer

How to create a SVC page that is accessed directly

According to my documentation 3rd party device connects to address: https://Enrollment.myweb.com/EnrollmentServer/Register.svc Header: POST /EnrollmentServer/Register.svc HTTP/1.1 Content-Type: application/soap+xml; charset=utf-8 User-Agent:…
Riho
  • 4,523
  • 3
  • 33
  • 48
0
votes
1 answer

How to make C#. svc that has multiple data arrays for series in highcharts

New to both Highcharts and WCF services. I can make either a series or data for highcharts but I can't seem to make multiple data arrays so my series has more that one line. Trying to make an array of arrays so my series has multiple data items in…
RichP
  • 525
  • 1
  • 10
  • 25
0
votes
1 answer

svc doesn't work

I have some problem and trying to solve for a few days.. I installed iis 6.0 but I updated it 7.5 express and 7.0. it looks 7.5 version.. so, I published wcf to localhost and set 4501 port. I can see file when I run iis …
unbalanced
  • 1,192
  • 5
  • 19
  • 44
0
votes
2 answers

Variable Service Reference Endpoint in C# and Visual Studio

Excuse my ignorance if this is something basic, I am somewhat new to the whole C# console application, using a Web Service Reference (WCF). I am creating an application that will be places as an executable on many different machines and acts as a…
Tom Pennetta
  • 482
  • 7
  • 25
0
votes
1 answer

.svc handler mappings for .Net 2.0 app pool working after a .Net 3.0 install?

This is odd. I have a website running under a .Net 2.0 app pool (Integrated mode) and couldn't connect to a WCF service on the site. A message reading "The requested content appears to be script and will not be served by the static file handler"…
larryq
  • 15,713
  • 38
  • 121
  • 190
-1
votes
1 answer

How can I rise the accuracy in support vector machine in python?

I've been trying to fit some data and predict them.I'm using SVC function in sklearn to train them.My problem is that my data are so complicated and I don't know how to classify them.I'm Uploading a 3d figure here .The dataset includes about 800…
-1
votes
1 answer

feature mismatch between loaded model and data to predict - scikit learn SVC

I've seen plenty of questions about this topic but couldn't find any clear answer to solve my problem: I save a model with the following code: clf = SVC(gamma=1,C=1) clf.fit(X_train,y_train) # save the model to disk filename =…
asher
  • 174
  • 1
  • 1
  • 12
-1
votes
1 answer

Optimal class weight parameter for the following SVC?

Hello I am working with sklearn to perform a classifier, I have the following distribution of labels: label : 0 frecuency : 119 label : 1 frecuency : 1615 label : 2 frecuency : 197 label : 3 frecuency : 70 label : 4 frecuency : 203 label : 5…
neo33
  • 1,809
  • 5
  • 18
  • 41
-2
votes
1 answer

SVM prediction (SVC vs SVR )

I'm trying to predict values in my dataset with SKlearn SVM. On the Sklearn website, I have more models: My dataset is full numeric (like the Iris dataset), without labels. I tried to apply the model in this way : svclassifier =…
theantomc
  • 619
  • 2
  • 7
  • 32
-2
votes
1 answer

How to include frequency factor in Linear SVC?

I am using linear svc (scikit learn) for classification into news categories such as sports,health,world,technology,lifestyle. Now for a given piece of text suppose it has : 1) 5 occurrences of word windows and 3 occurrences of word machine it not…
-2
votes
1 answer

python.exe has stopped working - svc

I'm trying to fit a simple SVC model on my dataset. As soon as I run my code, pop-up appears saying python.exe has stopped working. Here is my code: Xtrain, Xtest, Ytrain, Ytest = train_test_split(X, Y, test_size=0.3) svc = SVC() svc.fit(Xtrain,…
-3
votes
1 answer

detect if request is from mobile

I'm writing a webservice which is call'd from a webpage, I need to know if request comes from web or mobile browser including embeded android webview, webservice is c# , svc webservice.
ali kamrani
  • 73
  • 1
  • 8
1 2 3
14
15