This file contains hidden or 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
https://www.youtube.com/watch?v=CHbl_tHtr3o |
This file contains hidden or 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
<!DOCTYPE html> | |
<head> | |
<meta charset="utf-8" /> | |
<title> Script in head section </title> | |
<script type = "text/javascript"> | |
function ClickMe() { | |
console.log("click") | |
} | |
</script> | |
</head> |
This file contains hidden or 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
I worked with this model during the EthDenver https://github.com/spro/char-rnn.pytorch . I did not manage to get the right shape for https://github.com/zkonduit/pyezkl/tree/main/examples/tutorial . (loading the model to convert to *.onnx) | |
I learned a bit about ML though. :P | |
You | |
11:48 AM | |
https://gist.github.com/bshambaugh/af01e7366ac7f43abd8295533703d990 (other scratch work) | |
.... | |
You | |
11:51 AM | |
Here is my colab python sketches: https://colab.research.google.com/drive/1mi2Rcehz-YWOeXGBNjCe-COR5XhnfPTB |
This file contains hidden or 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
https://docs.arduino.cc/built-in-examples/digital/Button | |
https://diyprojectslab.com/mcp2515-spi-can-bus-module-with-arduino/#Required_Material | |
Sensor Data over CAN BUS - Arduino with CAN2515 | |
https://www.youtube.com/watch?v=2gnXKMoFwkc | |
arduino mcp2515 CAN bus Demo with Push botton and LED | |
https://www.youtube.com/watch?v=pD22AUjkDAw |
This file contains hidden or 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
def main(): | |
torch_model = Circuit() | |
# Input to the model | |
shape = [3, 2, 2] /// change to [batch_size, seq_len, input_size] | |
x = 0.1*torch.rand(1,*shape, requires_grad=True) | |
y = 0.1*torch.rand(1,*shape, requires_grad=True) | |
torch_out = torch_model(x, y) | |
# Export the model | |
torch.onnx.export(torch_model, # model being run | |
(x,y), # model input (or a tuple for multiple inputs) |
This file contains hidden or 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
translation of: https://github.com/AXERA-TECH/ax-pipeline/blob/0ba37a0f08346dd80215aa46ac16f199c1f167b9/docs/how_to_deploy_custom_model.md | |
How to deploy your own other models | |
Read the documentation | |
Read through the AXera Pulsar toolchain guide to learn how to convert a custom onnx model into the Joint model used in AX620. | |
Inserting Post-Processing Code | |
The model inference in ax-pipeline is basically a standard operation, and pre-processing is not something that needs to be configured in the code. |
This file contains hidden or 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
translation of: https://github.com/AXERA-TECH/ax-pipeline | |
Update Log | |
2023-01-16 Added YoloV8, please refer to ModelZoo for details. | |
2022-12-29 Added sample_v4l2_user_ivps_joint_vo for direct input of NV12 data, if the user has access to NV12 data. Modified the value of enum class SAMPLE_RUN_JOINT_MODEL_TYPE to meet the growing list of model support. | |
2022-12-26 Added sample code for rtsp input sample_rtsp_ivps_joint_vo |
This file contains hidden or 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
:~/Downloads/l2-intro-pre-ethdenver$ yarn hardhat deploy-zksync --script deploy-greeter.ts | |
yarn run v1.22.19 | |
warning ../package.json: No license field | |
warning ../../package.json: No license field | |
$ /home/ubuntu/Downloads/l2-intro-pre-ethdenver/node_modules/.bin/hardhat deploy-zksync --script deploy-greeter.ts | |
Running deploy script for the Greeter contract | |
(node:5033) ExperimentalWarning: stream/web is an experimental feature. This feature could change at any time | |
(Use `node --trace-warnings ...` to show where the warning was created) | |
An unexpected error occurred: |
This file contains hidden or 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
https://consensys.net/developers/ultimate-hackathon-survival-guide/ | |
https://swissintech.medium.com/ultimate-ethereum-hackathon-survival-guide-for-2023-94b2b72e17c0 |
This file contains hidden or 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
https://medium.com/textileio/whats-really-happening-when-you-add-a-file-to-ipfs-ae3b8b5e4b0f | |
https://github.com/ipvm-wg/spec/discussions/9 (IPLD Transformations) | |
Ask on IPLD / IPFS Discord? | |
How do you cluster IPFS hashes that are most used/relevant? | |
It looks like with IPLD you can hash any RDF document regardless of serialization and have them point to other RDF documents. | |
IPLD can also hash individual pieces of data, so it looks like you could build a triplestore using the unhashed data. |