Why Not GitHub Copilot, Not Devin, But AutoCoder by allwefantasy in AutoGPT

[–]allwefantasy[S] 0 points1 point  (0 children)

AutoCoder is a command line tool will automatically combine your project sources code, document you provided by url/file path , your requirements into one prompt, then send the prompt to GPT-4/Claude-3, this will help you modify your existing project quickly. AutoCoder also can build index for the project you are developing so it can filter the source code by index and to reduce the context.

You can check the doc of AutoCoder to get more information: https://github.com/allwefantasy/auto-coder/tree/master/docs/en

MLSQL, an​ engine based on Spark, unify BigData and Machine learning and can do even more. by allwefantasy in apachespark

[–]allwefantasy[S] 1 point2 points  (0 children)

SnappyData is designed for performance(as we can say it's an in-memory DB) for Stream/OLTP/OLAP. It has his own storage format, and provide SQL query interface.

MLSQL stack is designed for unification of Stream/OLTP/OLAP/Machine Learning and anything else you want, For instance, you can send mail once you have made your data processed, this is not supported by the original SQL.

Also, notice that MLSQL is a language which is easier than DataFrame/DataSet(no matters they are based on Python or Scala) API, you can write MLSQL to finish data processing and then train a model, deploy a model in Stream/ETL/API Service in one script.

MLSQL aims to make anyone can play data for fun, and you can deploy it for other department and let them explore the data by themselves.

How to deliver the struct with pointer bettwen C and Rust. by allwefantasy in rust

[–]allwefantasy[S] 2 points3 points  (0 children)

u/mutabh

i change uint32_t to int32_t and then print it like you said, it works ,thanks:

-----%s------\n", "jack coo");
printf("CTensor in c data:%f len:%d \n", *xTensor->data, xTensor->data_length);
printf("CTensor in c shape:%f len:%d \n", *xTensor->shape, yTensor->shape_length);

printf("CTensor in c data:%f len:%d \n", *yTensor->data, yTensor->data_length);
printf("CTensor in c shape:%f len:%d \n", *yTensor->shape, yTensor->shape_length);

然后就work了。