Questions tagged [hub]

36 questions
16
votes
1 answer

How do I show docker pulls as an image in my github readme file

How can I add my "docker pulls", "build status", ... as a nice image / icon / badge in my README.md file ? I'm using github with an autobuild link to docker hub. update: I found out about badges but could use some…
Tim Chaubet
  • 498
  • 1
  • 7
  • 15
2
votes
2 answers

Get Context.User.Identity from signalr hub in blazor server app (.NET 7)

I would like to understand why Context.User.Identity.Name is null and why Context.User.Identity.IsAuthenticated is false inside a signalr Hub in the onConnectedAsync method? Msdn says: "SignalR can be used with ASP.NET Core authentication to…
Nicolas
  • 21
  • 2
  • 3
2
votes
1 answer

What does stopping the runtime while uploading a dataset to Hub cause?

I am getting the following error while trying to upload a dataset to Hub (dataset format for AI) S3SetError: Connection was closed before we received a valid response from endpoint URL: "<...>". So, I tried to delete the dataset and it is throwing…
2
votes
1 answer

Does Hub support integrations for MinIO, AWS, and GCP? If so, how does it work?

I was taking a look at Hub—the dataset format for AI—and noticed that hub integrates with GCP and AWS. I was wondering if it also supported integrations with MinIO. I know that Hub allows you to directly stream datasets from cloud storage to ML…
1
vote
0 answers

Memory keep increasing in signalR hub

I have a signalR server app (Hub) that runs in Azure. Clients (HubConnection) connects to this server app. The memory consumptions for the server app (Hub) keeps increasing. My first idea was to reduce the number of messages in memory by setting…
1
vote
2 answers

Add SignalR to Net6 Web Api and connect from Winforms application (.net fx4.8) - hub not found

I'm trying to add signalr to the webapi, I create the CucinaHub class: public class CucinaHub : Hub { static ConcurrentDictionary _users = new ConcurrentDictionary(); #region Client Methods public void…
andreat
  • 297
  • 2
  • 15
1
vote
1 answer

My PCs are connected to a router switch and my NAS is connected to the router. Would I be able to access my Nas from the computer connected to switch

See the diagram on my connection is a follow- |-Pc 1 |-Switch-|-Pc 2 | |-Pc 3 Router-|-Other Devices connected to the router with wifi. | |-NAS Here I can access the NAS from the router with…
1
vote
2 answers

how to Load YOLOv7 using torch.hub

how to load yolov7 model using torch.hub for make prediction I directly use torch.hub.load method of yolov5 but it didn't work
Chafik Boulealam
  • 516
  • 5
  • 10
1
vote
2 answers

Can't open unity projects on new laptop. 'No valid unity editor license found. Please activate your license.'

Hi, I sold my PC with hard reset, so no unity on that, I have another laptop with unity on it, signed into the same account. I bought this laptop, installed windows 11, and can't get Unity to work. Things I've tried: Logged out on everything…
1
vote
1 answer

Using SignalR Hub outside the hub definition file

There are other questions on the topic but the solutions there don't work for me. I guess is a small detail on the syntax since it changes a bit from version to version.. I created a SignalR hub on a blazor hosted WASM, and I want to be able to send…
javirs
  • 1,049
  • 26
  • 52
1
vote
1 answer

"Archives" section not present in git hub repository setting

I want to include a unity file on git hub. To upload a unity file git-lfs is needed, so we have to enable the include git-lfs under the archive section but the archive section is not found in my repository: screenshot I am searching for the solution…
1
vote
1 answer

How to handle NaN values in Activeloop Hub datasets?

I am working on converting a dataset into Activeloop Hub format. The dataset I am working with has NaN values however I am not sure how to handle these values with the Hub dataset format. The NaN values are appearing in the labels of the dataset. I…
1
vote
1 answer

Why is there an additional "None" dimension in the tensor shape when uploading a dataset to Activeloop Hub?

I am trying to upload an image datset to Hub (dataset format with an API for creating, storing, & collaborating on AI datasets). I only uploaded part of the dataset, however upon inspecting the uploaded data I noticed that there was an additional…
1
vote
1 answer

ZeroDivisionError in the eval function for hub.compute when kept a default value of 1 for the num_workers parameter

I was using Hub the Dataset format for AI and I ran function().eval(ds.tensor[:].numpy(), ds which gave me a zero division error. However when I ran function().eval(ds.tensor[:].numpy(), ds, num_workers=2) I did not get the error. I was using Hub…
1
vote
1 answer

How do non-image datatypes such as 3D objects, audio, video, etc work with Activeloop Hub?

I was using Hub, a dataset format for AI that allows data streaming to GPUs without sacrificing performance. I have been using Hub for image datasets and would like to try to use the product for other data types. How would Hub work for different…
1
2 3