https://machinelearningmastery.com/multivariate-time-series-forecasting-lstms-keras/ https://archive.ics.uci.edu/ml/datasets/Beijing+PM2.5+Data
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
#!/usr/bin/python3 | |
import os | |
import sys | |
import glob | |
import csv | |
import json | |
__version__ = '0.0.1' |
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
Traceback (most recent call last): | |
File "/opt/python-occlum/lib/python3.7/site-packages/ai_flow_plugins/job_plugins/flink/flink_run_main.py", line 96, in run_project | |
flink_execute_func(run_graph=run_graph, job_execution_info=job_execution_info, flink_env=flink_env) | |
File "/opt/python-occlum/lib/python3.7/site-packages/ai_flow_plugins/job_plugins/flink/flink_run_main.py", line 75, in flink_execute_func | |
job_client = statement_set.execute().get_job_client() | |
File "/opt/flink-1.11.2/opt/python/pyflink.zip/pyflink/table/statement_set.py", line 104, in execute | |
return TableResult(self._j_statement_set.execute()) | |
File "/opt/flink-1.11.2/opt/python/py4j-0.10.8.1-src.zip/py4j/java_gateway.py", line 1286, in __call__ | |
answer, self.gateway_client, self.target_id, self.name) | |
File "/opt/flink-1.11.2/opt/python/pyflink.zip/pyflink/util/exceptions.py", line 154, in deco |
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
/* | |
https://www.trufflesuite.com/docs/truffle/getting-started/running-migrations | |
https://docs.ens.domains/deploying-ens-on-a-private-chain | |
https://www.trufflesuite.com/docs/truffle/reference/truffle-commands#migrate | |
*/ | |
const utils = require('web3-utils'); | |
const namehash = require('eth-ens-namehash'); | |
const tld = "test"; |
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
// Notice: Junit5 as ut framework. | |
import org.junit.jupiter.api.Test; | |
import java.util.Arrays; | |
import java.util.Collections; | |
import java.util.LinkedList; | |
import java.util.List; | |
import java.util.stream.Collectors; | |
import static org.junit.jupiter.api.Assertions.assertEquals; |
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
set VERSION = 20.20.20 |
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
Constructor 0x7fffad4b75d0:A0,0 | |
--1-- | |
Copy constructor 0x55b854a6ee70:A0,0 | |
16 | |
--2-- | |
Constructor 0x7fffad4b7600:push,10 | |
Copy constructor 0x55b854a6ee98:push,10 | |
Destructor 0x7fffad4b7600:push,10 | |
16 | |
--3-- |
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
Verifying my Blockstack ID is secured with the address 1Q7wBV7Vv2M59cRoUVKtd59BfNcgpftVpz https://explorer.blockstack.org/address/1Q7wBV7Vv2M59cRoUVKtd59BfNcgpftVpz |
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
package main | |
import ( | |
"fmt" | |
"os" | |
"reflect" | |
"strconv" | |
"github.com/aliyun/aliyun-oss-go-sdk/oss" | |
) |
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
# pylint: disable=W0311,W0613,C0111,C0103 | |
from sanic import Sanic, response | |
#from sanic.response import json | |
app = Sanic('S0', log_config=None) | |
@app.route('/') | |
async def index(request): | |
data = {'message': 'hello world'} | |
return response.json(data) |
NewerOlder