Yuan

Results 34 issues of Yuan

I install pya2l directly via pip. The test code is copied from introduction. ``` Traceback (most recent call last): File "pya2ltest.py", line 58, in assert python_object_to_json_string(a2l.tree.project.json, sort_keys=True, indent=4) == """{...

I modified the example echoserv.c a bit like this to get ip address: ``` ... static void onAccept(dyad_Event *e) { printf("IP:%s\n",dyad_getAddress(e->remote)); dyad_addListener(e->remote, DYAD_EVENT_DATA, onData, NULL); dyad_writef(e->remote, "echo server\r\n"); } ......

I use python 3.4. Generating code with the error info: Traceback (most recent call last): File "ribosome.py", line 371, in line = dnastack[-1][0].readline() UnicodeDecodeError: 'gbk' codec can't decode byte 0xae...

Problem midi file: [Vivaldi_-_Summer_-_Piano.zip](https://github.com/mido/mido/files/7575976/Vivaldi_-_Summer_-_Piano.zip) Code snippet: ``` def readMidiFile(filePath): noteOnList = [] mid = MidiFile(filePath) print('MIDI duration:', mid.length) absoluteTime = 0 for msg in mid: absoluteTime += msg.time if msg.type...

I notice that the fixed H matrix for homogeneous transformation is used: ``` y_start = 0.3 y_stop = 1 src = np.float32([[0.45,y_start],[0.55, y_start],[0.1,y_stop],[0.9, y_stop]]) dst = np.float32([[0.45, y_start],[0.55, y_start],[0.45, y_stop],[0.55,y_stop]])...

Is this API to set the capacity of internal thread pool? Furthermore, how does the brynet schedule the multiple tcp clients to these threads? Such as num of clients greater...

https://conan.io/center/brynet The latest version is brynet/1.11.0.

> FEATURE REQUEST ### Missing feature Output *.lst and map file ### Justification I want to dig into rv64 by observing the asm generating by compiler and try mixed coding...

When I tried to generate image of a cat... ![output_1](https://user-images.githubusercontent.com/2088817/54967872-b8391600-4fb3-11e9-8e41-87b17e11dc7e.png) ![output_1-1](https://user-images.githubusercontent.com/2088817/54967874-b8d1ac80-4fb3-11e9-824a-3e628f78e044.png) ![output_1-2](https://user-images.githubusercontent.com/2088817/54967875-b8d1ac80-4fb3-11e9-9a2f-997ba4f54194.png) It seems like a kind of mixture with leopard's body and tiger's face.

I am trying to train my own dataset with two classes ( background and foreground ). I get confused of the output from seg net: ``` class MobileNetV3Seg(BaseModel): def __init__(self,...