-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
杜文凯
committed
Feb 1, 2023
1 parent
9a2e5d0
commit 02fd0ff
Showing
64 changed files
with
5,630 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
# AIGC(AI-Generated Content 人工智能生成内容) | ||
AIGC(利用AI技术自动生成内容的生产方式)概念在二级市场吸睛无数,其概念股美图公司(1357.HK)、蓝色光标(300058.SZ)、恒信东方(300081.SZ)等股价出现不同幅度的上涨。 | ||
而近期在国内社交网络“火出天际”的AI绘画软件则主要集中在小程序及APP,如意间AI绘画、盗梦师、Style art、滴墨社区、Uni Dream等,以及网站draft.art等。其中,根据小程序“意间AI绘画”披露的后台数据,自2022年9月30日平台上线到2022年11月12日,平台用户由0增长到了117万人,其中,11月11日单日用户增加65.7万人。 | ||
|
||
https://github.com/topics/aigc | ||
|
||
# AIGC 应用 | ||
|
||
2014年的时候,我在互联网企业里做内容工作,当时业内很流行凯文·凯利的“一千个粉丝”理论,相信“找到一千个种子用户,产品就能够活下去”。 | ||
|
||
找到种子用户干嘛呢?核心KPI之一,就是鼓励他们创造内容,提高平台的UGC数量与质量。 | ||
|
||
普通人也轻松能创作的图文短视频,用爱发电的同人衍生,极具创意的鬼畜视频……UGC(User-generated content用户生产内容),以高效、丰富、多元的产出方式,和PGC(Professional-generated content专家生产内容)、OGC(Occupationally-generated Content职业生产内容)一起,让互联网数字内容呈现出前所未有的繁荣多彩。 | ||
|
||
modelscope | ||
|
||
https://mp.weixin.qq.com/s/fOyvo0VQpl4IaY3avx8BOA | ||
|
||
https://www.modelscope.cn/models/damo/cv_diffusion_text-to-image-synthesis/summary | ||
|
||
https://www.woshipm.com/ai/5324146.html | ||
|
||
https://www.jasper.ai/blog/ai-content-generator | ||
|
||
|
||
# MLOPS | ||
|
||
https://blog.csdn.net/DolphinScheduler/article/details/125494721 | ||
|
||
https://zhuanlan.zhihu.com/p/554210516 | ||
|
||
https://github.com/apache/dolphinscheduler/issues/9725 | ||
|
||
https://www.infoq.com/articles/apache-dolphinscheduler-mlops/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# 积木内置justauth | ||
|
||
```mvn | ||
<dependency> | ||
<groupId>com.xkcoding.justauth</groupId> | ||
<artifactId>justauth-spring-boot-starter</artifactId> | ||
<version>1.4.0</version> | ||
</dependency> | ||
``` | ||
|
||
https://github.com/justauth/justauth-spring-boot-starter | ||
|
||
https://xie.infoq.cn/article/e6b9817b017a06c8d645de529 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -618,3 +618,7 @@ load | |
|
||
DataFrameReader | ||
jdbc | ||
|
||
|
||
# jdbc 保存很慢 | ||
https://blog.csdn.net/lovetechlovelife/article/details/112471839 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
# 源码拆解 | ||
|
||
orm | ||
```java | ||
AbstractBlockChainEntity | ||
AbstractEntity | ||
AbstractUniqueIDEntity | ||
|
||
log_time | ||
updated_time | ||
created_time | ||
id uuid | ||
|
||
base Entity + 自有的attr | ||
|
||
|
||
SDK supports CNS. CnsService can configure CNS. The APIs are here: | ||
|
||
String registerCns(String name, String version, String address, String abi): register CNS according to contract name, version, address and contract abi. | ||
String getAddressByContractNameAndVersion(String contractNameAndVersion): inquire contract address according to contract name and version (connected with colon). If lack of contract version, it is defaulted to be the latest version. | ||
List<CnsInfo> queryCnsByName(String name): inquire CNS information according to contract name. | ||
List<CnsInfo> queryCnsByNameAndVersion(String name, String version): inquire CNS information according to contract name and version. | ||
|
||
|
||
// 初始化RPC Server | ||
Map<String, RpcServerAnnotate> rpcClassBeans = ClassUtil.loadRpcClassBeans(); | ||
if (rpcClassBeans.isEmpty()) { | ||
throw new Exception("start rpc server fail, is not exist available gRpc server."); | ||
} | ||
// Binding port | ||
NettyServerBuilder serverBuilder = NettyServerBuilder.forPort(configProperties.getRpcServerPort()); | ||
|
||
for (Map.Entry<String, RpcServerAnnotate> entry : rpcClassBeans.entrySet()) { | ||
RpcServerAnnotate rpcServerAnnotateConfig = entry.getValue(); | ||
BindableService rpcService = rpcServerAnnotateConfig.getRpcBean(); | ||
List<Class<? extends ServerInterceptor>> interceptors = rpcServerAnnotateConfig.getInterceptors(); | ||
if (CollectionUtils.isNotEmpty(interceptors)) { | ||
serverBuilder.addService(ServerInterceptors.intercept(rpcService, listToInstanceArray(interceptors))); | ||
} else { | ||
serverBuilder.addService(rpcService); | ||
} | ||
} | ||
|
||
// Set the maximum message that the server can receive(2000M) | ||
serverBuilder.maxInboundMessageSize(2000 * 1024 * 1024); | ||
serverBuilder.compressorRegistry(CompressorRegistry.getDefaultInstance()); | ||
serverBuilder.decompressorRegistry(DecompressorRegistry.getDefaultInstance()); | ||
serverBuilder.keepAliveTimeout(30, TimeUnit.SECONDS); | ||
// Maximum space time | ||
serverBuilder.maxConnectionIdle(120, TimeUnit.SECONDS); | ||
serverBuilder.maxConnectionAge(120, TimeUnit.SECONDS); | ||
serverBuilder.maxConnectionAgeGrace(180, TimeUnit.SECONDS); | ||
// Start service | ||
rpcServer = serverBuilder.build().start(); | ||
// Registration tick | ||
Runtime.getRuntime().addShutdownHook(new Thread(InitRpcServer.this::stop)); | ||
// Start daemon | ||
blockUntilShutdown(); | ||
``` | ||
|
||
|
||
区块链开发 ficos | ||
|
||
https://fisco-bcos-documentation.readthedocs.io/zh_CN/v2.8.0/docs/sdk/java_sdk/quick_start.html?highlight=BcosSDK#configoptionbcossdk |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.