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
1
vote
0 answers

Value error when trying to do classification with support vector machines

I am trying to use different techniques to classify my data. I cleaned my dataset and then I also standardized and rescaled my input components to look for any differences. When i am trying to perform the following Support Vector Machines, i get the…
1
vote
1 answer

Grid search for SVC : IndexError: too many indices for array

I'm trying to use GridSearchCV to find the best params for SVC. from sklearn.svm import SVC from sklearn import svm, grid_search from sklearn.model_selection import GridSearchCV param_grid = [ {'C': [1,5,10,100]}, ] algo =…
Yagel
  • 1,184
  • 2
  • 18
  • 41
1
vote
2 answers

One-class-only folds tested through GridSearchCV

When using GridSearchCV on a custom estimator that is a wrapper on SVC, I get the error: "ValueError: The number of classes has to be greater than one; got 1 class" The custom estimator is made to add gridsearch parameters to the estimator and…
Abel Adary
  • 31
  • 4
1
vote
0 answers

SVC Gridsearch is very slow

The following code is very slow, even if I increase cache_size to 2000: svc_param_grid = {'kernel': ['rbf', 'linear', 'poly', 'sigmoid'], 'gamma': np.arange(0.0,10.0,0.1).tolist(), 'C': np.logspace(-15, 15, num=100,…
taps
  • 11
  • 2
1
vote
1 answer

Porting WCF from self-hosting to IIS/AppFabric hosting

I have a WCF that has a TCP, HTTP and Mex binding in a self-hosted file, and everything works great. However, and I want to migrate it over to AppFabric, and keep the same bindings, but I'm having a very hard time doing it. I added the WCF Service…
Pascal
  • 2,944
  • 7
  • 49
  • 78
1
vote
0 answers

svcutil Generated File unity UWP errors

Using Unity to create a Hololens (UWP) application that talks to a WCF host. I have used this tutorial to create the client to talk to my host. Using svcutil to generate the proxy just like in the tutorial. When I run the code inside of unity by…
1
vote
1 answer

could not get response for webservice even in postman

iam implementing .svc web services but could not get success in response . Please let me know the issue web service url is : http://77.92.177.131/Focus8Library/TransactionService.svc/LoadVoucher and we have to send json input : json is : "{ …
Developer
  • 21
  • 4
1
vote
0 answers

Suggestions for block sizes in dask for my matrix (doing onehot and classification)

I am new to using dask, although I have experience in parallel computing and other libraries. I was wondering if someone had good suggestions about which block sizes I should use. I have the done the following workflow previously in memory using…
SWZ
  • 31
  • 2
1
vote
1 answer

svc webservice response contains extra double qotation

I have a json stored in database in a ntext field, I want to return that in a svc (c#) webservice , webservice is get and response type is string such as below : [WebInvoke(Method = "GET", ResponseFormat = WebMessageFormat.Json, …
ali kamrani
  • 73
  • 1
  • 8
1
vote
1 answer

Autofac WCF environment issue - The AutofacServiceHost.Container static property must be set before services can be instantiated

We're seeing this error in a customer environment with our WCF services. We haven't been able to reproduce in house with the same Dlls and web.config settings. Therefore, I'm assuming it's an issue with the environment. Any suggestions for things…
Ben
  • 21
  • 3
1
vote
0 answers

svclog file is not being generated

Been wasting a full day arround this problem. This had never happen to me before. My service is working in an Azure machine. I'm trying to generate a .svclog file to trace whats causing my ios app not being able to login on https, but the svclog…
João Serra
  • 379
  • 1
  • 5
  • 20
1
vote
1 answer

Using TFS 2017 To Build WCF Service Doesnt Output .SVC Files

I'm able to get my project to build just fine using TFS 2017 Visual Studio Build step. However in the output directory there are no .SVC files. Am i missing a step that produces these? I have searched for this online and i still haven't found a…
Kyle Fuller
  • 117
  • 2
  • 13
1
vote
1 answer

How to hide my WCF service URL path

I have a WCF service hosted on IIS and it accepts connection like this http://host/myservice.svc/GetCount?method=?, i have bunch of html pages that sitting on the public domain and will be calling the above services and anyway could easily view the…
Nick Kahn
  • 19,652
  • 91
  • 275
  • 406
1
vote
1 answer

Cannot push -f after rebasing atop of master

I rebased my m-branch atop of master Now I want to sync my remote m-branch with my local m-branch I know i should do git push -f but i get an error: ➜ SupporTool git:(m-branch) git push -f origin m-branch Counting objects: 745, done. Delta…
Elad Benda
  • 35,076
  • 87
  • 265
  • 471
1
vote
1 answer

Communicate with multiple web service dynamically

I am looking for some advice on how I can do a piece of work I have. Basically I have multiple webservice that takes the same methods and parameters. And it is a pain to always have to get proxy classes, and change the code when a new provider is…
Jack M
  • 2,564
  • 4
  • 28
  • 49