Skip to content
#

sort

Here are 1,026 public repositories matching this topic...

Sortable
waynevanson
waynevanson commented Apr 16, 2020

Is your feature request related to a problem? Please describe.
readme is lengthy, verbose, not up to date and difficult to navigate.

Describe the solution you'd like
Add a separate set of docs host on github pages or in the wiki.

Describe alternatives you've considered
This is the alternative.

Additional context
Missing API's, missing examples, missing common solution

TheSuperNoob
TheSuperNoob commented Mar 2, 2020

Is there a reason why in travis CI config the command black --check . || true is run? I don't see the point in checking if files needs to be reformatted if it's just going to be ignored anyways.

Currently running black --line-length 127 --check . -> 399 files would be reformatted, 74 files would be left unchanged.

In additio

sheffieldnick
sheffieldnick commented Mar 31, 2020

Can this be added to the List API docs please?
As well as the documented:

listObj.search('Jonny'); // Only item with name Jonny is shown (also returns this item)
listObj.search(); // Show all items in list
listObj.search('Jonny', ['name']); // Only search in the 'name' column

search also supports a (currently undocumented) custom search function as the 2nd or 3rd argument:

danielchang-Z
danielchang-Z commented Sep 30, 2018

A pleasure that LinkedHashMap has been added.

While I have a different point about the iterative sequence. The sequence should order by the key last time put in instead of the first time put in.

This situation is caused by the func named LinkedHashMap.Put:

// Put inserts key-value pair into the map.
// Key should adhere to the comparator's type assertion, otherwise method panics.
fu
joeatbayes
joeatbayes commented May 7, 2015

It took me a while to figure out how to use khash from the built in example. I saw similar complaints on other blog pages so I don't think I am unique. I suggest adding the following as file to the repository as an example and modifying the home page of the repository to link to it. It compiled and ran fine with gcc with the std=c11 flag set.

// khash example for string key int payl
jishanshanss
jishanshanss commented Apr 26, 2020

original code :

img = ori_img.astype(np.float)/255.
img = cv2.resize(img, self.size)
img = torch.from_numpy(img).float().permute(2,0,1).unsqueeze(0)
img = img.to(self.device)
with torch.no_grad():
            out_boxes = self.net(img)

I suggest using:

from PIL import Image
from torch.utils.data import DataLoader
from torchvision import datasets, transforms
from torch.au
307509256
307509256 commented Dec 11, 2017

I find run.py is updated.

-# FLAGS.model = "darkflow/cfg/yolo.cfg" # tensorflow model
-# FLAGS.load = "darkflow/bin/yolo.weights" # tensorflow weights
-FLAGS.pbLoad = "tiny-yolo-voc-traffic.pb" # tensorflow model
-FLAGS.metaLoad = "tiny-yolo-voc-traffic.meta" # tensorflow weights

could you share the file of tiny-yolo-voc-traffic.pb and tiny-yolo-voc-traffic.meta ?
thank you very much!

Improve this page

Add a description, image, and links to the sort topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the sort topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.