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
    
  
  
    
  | 2023-06-05T11:57:46Z INFO Using default AutoscalingListener image pull policy {"ImagePullPolicy": "IfNotPresent"} | |
| 2023-06-05T11:57:46Z INFO controller-runtime.metrics Metrics server is starting to listen {"addr": "127.0.0.1:8080"} | |
| 2023-06-05T11:57:46Z INFO Initializing actions-runner-controller {"version": "v0.27.4", "default-scale-down-delay": "10m0s", "sync-period": "1m0s", "default-runner-image": "summerwind/actions-runner:latest", "default-docker-image": "docker:dind", "default-docker-gid": "1001", "common-runnner-labels": null, "leader-election-enabled": true, "leader-election-id": "actions-runner-controller", "watch-namespace": "runner-namespace"} | |
| 2023-06-05T11:57:46Z INFO controller-runtime.builder Registering a mutating webhook {"GVK": "actions.summerwind.dev/v1alpha1, Kind=Runner", "path": "/mutate-actions-summerwind-dev-v1alpha1-runner"} | |
| 2023-06-05T11:57:46Z INFO controller-runtime.webhook Registering webhook {"path": "/mutate-actions-summerwind-dev-v1alpha1-runner"} | |
| 2023-06-05T11:57:46Z INFO contro | 
  
    
      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
    
  
  
    
  | import org.deeplearning4j.nn.graph.ComputationGraph; | |
| import org.deeplearning4j.nn.modelimport.keras.KerasModelImport; | |
| public class Main { | |
| public static void main(String[] args) { | |
| String configPath = "../python/model_config.json"; | |
| String weigthsPath = "../python/model_weights.h5"; | |
| try { | |
| ComputationGraph model = KerasModelImport.importKerasModelAndWeights(configPath, weigthsPath); | |
| } catch (Exception e) { |