Переглянути джерело

Remove deprecated intreface from remote controll

Alexey Edelev 5 роки тому
батько
коміт
d1488e5e05

+ 0 - 237
remotecontrol/remotecontrol.go

@@ -1,237 +0,0 @@
-/*
- * MIT License
- *
- * Copyright (c) 2019 Alexey Edelev <semlanik@gmail.com>
- *
- * This file is part of NeuralNetwork project https://git.semlanik.org/semlanik/NeuralNetwork
- *
- * Permission is hereby granted, free of charge, to any person obtaining a copy of this
- * software and associated documentation files (the "Software"), to deal in the Software
- * without restriction, including without limitation the rights to use, copy, modify,
- * merge, publish, distribute, sublicense, and/or sell copies of the Software, and
- * to permit persons to whom the Software is furnished to do so, subject to the following
- * conditions:
- *
- * The above copyright notice and this permission notice shall be included in all copies
- * or substantial portions of the Software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
- * INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
- * PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE
- * FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
- * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
- * DEALINGS IN THE SOFTWARE.
- */
-
-package remotecontrol
-
-import (
-	context "context"
-	fmt "fmt"
-	"log"
-	"net"
-	"sync"
-	"time"
-
-	"google.golang.org/grpc/codes"
-	status "google.golang.org/grpc/status"
-
-	neuralnetwork "git.semlanik.org/semlanik/NeuralNetwork/neuralnetwork"
-	"gonum.org/v1/gonum/mat"
-	grpc "google.golang.org/grpc"
-
-	training "git.semlanik.org/semlanik/NeuralNetwork/training"
-)
-
-type RemoteControl struct {
-	nn               *neuralnetwork.NeuralNetwork
-	activationsQueue chan *LayerMatrix
-	biasesQueue      chan *LayerMatrix
-	weightsQueue     chan *LayerMatrix
-	stateQueue       chan int
-	mutex            sync.Mutex
-	config           *Configuration
-}
-
-func NewRemoteControl() (rw *RemoteControl) {
-	rw = &RemoteControl{}
-	rw.activationsQueue = make(chan *LayerMatrix, 5)
-	rw.biasesQueue = make(chan *LayerMatrix, 5)
-	rw.weightsQueue = make(chan *LayerMatrix, 5)
-	rw.stateQueue = make(chan int, 2)
-	rw.config = &Configuration{}
-	return
-}
-
-func (rw *RemoteControl) Init(nn *neuralnetwork.NeuralNetwork) {
-	rw.nn = nn
-	for _, size := range rw.nn.Sizes {
-		rw.config.Sizes = append(rw.config.Sizes, int32(size))
-	}
-}
-
-func (rw *RemoteControl) UpdateActivations(l int, a *mat.Dense) {
-	matrix := NewLayerMatrix(l, a, LayerMatrix_Activations)
-	select {
-	case rw.activationsQueue <- matrix:
-	default:
-	}
-}
-
-func (rw *RemoteControl) UpdateBiases(l int, biases *mat.Dense) {
-	matrix := NewLayerMatrix(l, biases, LayerMatrix_Biases)
-	select {
-	case rw.biasesQueue <- matrix:
-	default:
-	}
-}
-
-func (rw *RemoteControl) UpdateWeights(l int, weights *mat.Dense) {
-	matrix := NewLayerMatrix(l, weights, LayerMatrix_Weights)
-	select {
-	case rw.weightsQueue <- matrix:
-	default:
-	}
-}
-
-func (rw *RemoteControl) UpdateState(state int) {
-	select {
-	case rw.stateQueue <- state:
-	default:
-	}
-}
-
-func NewLayerMatrix(l int, dense *mat.Dense, contentType LayerMatrix_ContentType) (matrix *LayerMatrix) {
-	buffer, err := dense.MarshalBinary()
-	if err != nil {
-		log.Fatalln("Invalid dense is provided for remote control")
-	}
-
-	matrix = &LayerMatrix{
-		Matrix: &Matrix{
-			Matrix: buffer,
-		},
-		Layer:       int32(l),
-		ContentType: contentType,
-	}
-
-	return
-}
-
-func (rw *RemoteControl) GetConfiguration(context.Context, *None) (*Configuration, error) {
-	return rw.config, nil
-}
-
-func (rw *RemoteControl) Activations(_ *None, srv RemoteControl_ActivationsServer) error {
-	ctx := srv.Context()
-	for {
-		select {
-		case <-ctx.Done():
-			return ctx.Err()
-		default:
-		}
-		msg := <-rw.activationsQueue
-		srv.Send(msg)
-	}
-}
-
-func (rw *RemoteControl) Biases(_ *None, srv RemoteControl_BiasesServer) error {
-	ctx := srv.Context()
-	for {
-		select {
-		case <-ctx.Done():
-			return ctx.Err()
-		default:
-		}
-		msg := <-rw.biasesQueue
-		srv.Send(msg)
-	}
-}
-
-func (rw *RemoteControl) Weights(_ *None, srv RemoteControl_WeightsServer) error {
-	ctx := srv.Context()
-	for {
-		select {
-		case <-ctx.Done():
-			return ctx.Err()
-		default:
-		}
-		msg := <-rw.weightsQueue
-		srv.Send(msg)
-	}
-}
-
-func (rw *RemoteControl) State(_ *None, srv RemoteControl_StateServer) error {
-	ctx := srv.Context()
-	for {
-		select {
-		case <-ctx.Done():
-			return ctx.Err()
-		default:
-		}
-		state := <-rw.stateQueue
-		msg := &NetworkState{
-			State: NetworkState_State(state),
-		}
-		srv.Send(msg)
-	}
-}
-
-func (rw *RemoteControl) Predict(context.Context, *Matrix) (*Matrix, error) {
-	return nil, status.Error(codes.Unimplemented, "Not implemented")
-}
-
-func (rw *RemoteControl) DummyStart(context.Context, *None) (*None, error) {
-	go func() {
-		rw.mutex.Lock()
-		defer rw.mutex.Unlock()
-		// trainer := training.NewMNISTReader("./minst.data", "./mnist.labels")
-		trainer := training.NewTextDataReader("wine.data", 5)
-		rw.nn.Train(trainer, 500)
-
-		// for i := 0; i < nn.Count; i++ {
-		// 	if i > 0 {
-		// 		fmt.Printf("Weights after:\n%v\n\n", mat.Formatted(nn.Weights[i], mat.Prefix(""), mat.Excerpt(0)))
-		// 		fmt.Printf("Biases after:\n%v\n\n", mat.Formatted(nn.Biases[i], mat.Prefix(""), mat.Excerpt(0)))
-		// 		fmt.Printf("Z after:\n%v\n\n", mat.Formatted(nn.Z[i], mat.Prefix(""), mat.Excerpt(0)))
-		// 	}
-		// 	fmt.Printf("A after:\n%v\n\n", mat.Formatted(nn.A[i], mat.Prefix(""), mat.Excerpt(0)))
-		// }
-
-		rw.nn.SaveStateToFile("./neuralnetworkdata.nnd")
-
-		rw.UpdateState(neuralnetwork.StateLearning)
-		defer rw.UpdateState(neuralnetwork.StateIdle)
-		failCount := 0
-		for i := 0; i < trainer.ValidatorCount(); i++ {
-			dataSet, expect := trainer.GetValidator(i)
-			index, _ := rw.nn.Predict(dataSet)
-			//TODO: remove this if not used for visualization
-			time.Sleep(400 * time.Millisecond)
-			if expect.At(index, 0) != 1.0 {
-				failCount++
-				// fmt.Printf("Fail: %v, %v\n\n", trainer.ValidationIndex(), expect.At(index, 0))
-			}
-		}
-
-		fmt.Printf("Fail count: %v\n\n", failCount)
-		failCount = 0
-		rw.UpdateState(neuralnetwork.StateIdle)
-	}()
-
-	return &None{}, nil
-}
-
-func (rw *RemoteControl) Run() {
-	grpcServer := grpc.NewServer()
-	RegisterRemoteControlServer(grpcServer, rw)
-	lis, err := net.Listen("tcp", "localhost:65001")
-	if err != nil {
-		fmt.Printf("Failed to listen: %v\n", err)
-	}
-
-	fmt.Printf("Listen localhost:65001\n")
-	if err := grpcServer.Serve(lis); err != nil {
-		fmt.Printf("Failed to serve: %v\n", err)
-	}
-}

+ 30 - 104
remotecontrol/remotecontrol.pb.go

@@ -302,43 +302,41 @@ func init() {
 func init() { proto.RegisterFile("remotecontrol.proto", fileDescriptor_9e7470c0107e56c6) }
 
 var fileDescriptor_9e7470c0107e56c6 = []byte{
-	// 422 bytes of a gzipped FileDescriptorProto
-	0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x53, 0x4f, 0xef, 0xd2, 0x40,
-	0x10, 0xed, 0xd2, 0x1f, 0xfd, 0xfd, 0x32, 0x05, 0x5c, 0x17, 0x35, 0x04, 0x3d, 0xd4, 0x4d, 0x34,
-	0x5c, 0x6c, 0x0c, 0x1e, 0xd0, 0x83, 0x26, 0x42, 0xe2, 0x9f, 0x04, 0x89, 0x29, 0x46, 0xcf, 0x2b,
-	0x5d, 0xeb, 0xc6, 0x76, 0x97, 0x6c, 0x17, 0x15, 0xbf, 0x84, 0x1f, 0xcd, 0x93, 0xdf, 0xc7, 0x74,
-	0x0b, 0xd8, 0x36, 0xd5, 0x03, 0x97, 0x66, 0x66, 0xf2, 0xde, 0x9b, 0x37, 0xb3, 0x53, 0x18, 0x6a,
-	0x9e, 0x29, 0xc3, 0x37, 0x4a, 0x1a, 0xad, 0xd2, 0x70, 0xab, 0x95, 0x51, 0xa4, 0x5f, 0x2b, 0xd2,
-	0x9f, 0x08, 0x7a, 0x2b, 0x6e, 0xbe, 0x29, 0xfd, 0x65, 0x6d, 0x98, 0xe1, 0x64, 0x06, 0xdd, 0xbc,
-	0x08, 0x46, 0x28, 0x40, 0x93, 0xc1, 0xf4, 0x6e, 0x58, 0x17, 0xa9, 0x62, 0x43, 0xfb, 0x8d, 0x4a,
-	0x3c, 0x7d, 0x01, 0xdd, 0x52, 0xe1, 0x0a, 0x2e, 0x56, 0x4a, 0x72, 0xec, 0x14, 0xd1, 0xeb, 0x38,
-	0xe5, 0x18, 0x91, 0x1e, 0x5c, 0x2d, 0x39, 0xd3, 0x52, 0xc8, 0x04, 0x77, 0xc8, 0x00, 0xe0, 0x3d,
-	0x4b, 0x45, 0xcc, 0x8c, 0x50, 0x12, 0xbb, 0xc4, 0x87, 0xcb, 0xb7, 0x9a, 0xc7, 0x62, 0x63, 0xf0,
-	0x05, 0x0d, 0xc0, 0x7b, 0xc3, 0x8c, 0x16, 0xdf, 0xc9, 0x2d, 0xf0, 0x32, 0x1b, 0x59, 0x2f, 0xbd,
-	0xe8, 0x90, 0xd1, 0xdf, 0x08, 0xfc, 0x25, 0xdb, 0x73, 0x7d, 0xc0, 0xbd, 0x02, 0xbf, 0xb0, 0xc7,
-	0xa5, 0x79, 0xb7, 0xdf, 0x1e, 0x8d, 0xdf, 0x6f, 0x18, 0xaf, 0x10, 0xc2, 0xc5, 0x5f, 0x74, 0x54,
-	0xa5, 0x92, 0x1b, 0xd0, 0x4d, 0x0b, 0xdc, 0xa8, 0x13, 0xa0, 0xc9, 0xf5, 0xa8, 0x4c, 0xc8, 0x83,
-	0x93, 0x0f, 0x37, 0x40, 0x13, 0x7f, 0x7a, 0xb3, 0x21, 0x5d, 0xaa, 0x9e, 0xec, 0xcd, 0xc0, 0xaf,
-	0x34, 0x20, 0xd7, 0xc0, 0x7f, 0xbe, 0x31, 0xe2, 0xab, 0x1d, 0x36, 0xc7, 0x4e, 0x31, 0xed, 0x07,
-	0x2e, 0x92, 0xcf, 0x26, 0xc7, 0x88, 0x00, 0x78, 0x73, 0xc1, 0x72, 0x9e, 0xe3, 0x0e, 0xbd, 0x07,
-	0xfd, 0x85, 0x92, 0x9f, 0x44, 0xb2, 0xd3, 0x16, 0x5c, 0xd8, 0xc9, 0xc5, 0x0f, 0x9e, 0x8f, 0x50,
-	0xe0, 0x16, 0x76, 0x6c, 0x42, 0xbd, 0x72, 0xbf, 0xd3, 0x5f, 0x2e, 0xf4, 0x23, 0x6b, 0x64, 0x51,
-	0x1a, 0x21, 0x2f, 0x01, 0x27, 0xdc, 0xd4, 0x35, 0x86, 0xcd, 0x07, 0x54, 0x92, 0x8f, 0xef, 0x34,
-	0x8a, 0x35, 0x0a, 0x75, 0xc8, 0xbc, 0xe6, 0xb9, 0x5d, 0x63, 0xfc, 0xef, 0x05, 0x53, 0xe7, 0x21,
-	0x22, 0x4f, 0x8f, 0x93, 0x9d, 0x47, 0x7f, 0x76, 0xda, 0xd2, 0xb9, 0xed, 0x0f, 0xe7, 0xd8, 0xca,
-	0xbe, 0xfd, 0x9f, 0xb3, 0xb6, 0xf4, 0x27, 0x70, 0xb9, 0x2d, 0x4f, 0x92, 0xb4, 0x3f, 0xf7, 0xb8,
-	0xbd, 0x4c, 0x1d, 0xf2, 0x18, 0x20, 0xde, 0x65, 0xd9, 0x7e, 0x6d, 0x98, 0x36, 0xed, 0xed, 0xdb,
-	0x8a, 0xd4, 0xf9, 0xe8, 0xd9, 0x5f, 0xf4, 0xd1, 0x9f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x5f, 0x9d,
-	0x2f, 0xb4, 0xb9, 0x03, 0x00, 0x00,
+	// 394 bytes of a gzipped FileDescriptorProto
+	0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x93, 0x4f, 0x6f, 0xda, 0x30,
+	0x18, 0xc6, 0xe3, 0x00, 0x19, 0x7a, 0x03, 0xcc, 0x33, 0xdb, 0x84, 0xd8, 0x0e, 0x99, 0xa5, 0x4d,
+	0x5c, 0x16, 0x4d, 0xec, 0xc0, 0x69, 0x93, 0x06, 0xd2, 0xfe, 0x48, 0x0c, 0x4d, 0xd9, 0xb4, 0x9e,
+	0x53, 0x70, 0x53, 0xab, 0xc1, 0x46, 0x8e, 0xfb, 0x87, 0x7e, 0x89, 0x7e, 0xba, 0x5e, 0xfa, 0x69,
+	0x2a, 0x3b, 0x40, 0x93, 0x88, 0xf6, 0xc0, 0x05, 0xbd, 0xaf, 0xf5, 0x3c, 0x8f, 0x7f, 0xef, 0x8b,
+	0x03, 0x5d, 0xc5, 0x96, 0x52, 0xb3, 0xb9, 0x14, 0x5a, 0xc9, 0x34, 0x5c, 0x29, 0xa9, 0x25, 0x69,
+	0x97, 0x0e, 0xe9, 0x0d, 0x82, 0xd6, 0x8c, 0xe9, 0x4b, 0xa9, 0xce, 0xfe, 0xea, 0x58, 0x33, 0x32,
+	0x82, 0x46, 0x66, 0x8a, 0x1e, 0x0a, 0xd0, 0xa0, 0x33, 0x7c, 0x17, 0x96, 0x43, 0x8a, 0xda, 0xd0,
+	0xfe, 0x46, 0xb9, 0x9e, 0x7e, 0x87, 0x46, 0x9e, 0xd0, 0x84, 0xfa, 0x4c, 0x0a, 0x86, 0x1d, 0x53,
+	0xfd, 0x5a, 0xa4, 0x0c, 0x23, 0xd2, 0x82, 0xe6, 0x94, 0xc5, 0x4a, 0x70, 0x91, 0x60, 0x97, 0x74,
+	0x00, 0xfe, 0xc7, 0x29, 0x5f, 0xc4, 0x9a, 0x4b, 0x81, 0x6b, 0xc4, 0x87, 0x67, 0x7f, 0x14, 0x5b,
+	0xf0, 0xb9, 0xc6, 0x75, 0x1a, 0x80, 0xf7, 0x3b, 0xd6, 0x8a, 0x5f, 0x91, 0xd7, 0xe0, 0x2d, 0x6d,
+	0x65, 0x59, 0x5a, 0xd1, 0xa6, 0xa3, 0xb7, 0x08, 0xfc, 0x69, 0xbc, 0x66, 0x6a, 0xa3, 0xfb, 0x09,
+	0xbe, 0xc1, 0x63, 0x42, 0xff, 0x5b, 0xaf, 0xb6, 0xe0, 0x1f, 0x2a, 0xe0, 0x05, 0x43, 0x38, 0x79,
+	0x50, 0x47, 0x45, 0x2b, 0x79, 0x09, 0x8d, 0xd4, 0xe8, 0x7a, 0x6e, 0x80, 0x06, 0x2f, 0xa2, 0xbc,
+	0x21, 0x1f, 0x77, 0x1c, 0xb5, 0x00, 0x0d, 0xfc, 0xe1, 0xab, 0x4a, 0x74, 0x9e, 0xba, 0xc3, 0x1b,
+	0x81, 0x5f, 0xb8, 0x80, 0x3c, 0x07, 0xff, 0xdb, 0x5c, 0xf3, 0x0b, 0x3b, 0x6c, 0x86, 0x1d, 0x33,
+	0xed, 0x11, 0xe3, 0xc9, 0xa9, 0xce, 0x30, 0x22, 0x00, 0xde, 0x98, 0xc7, 0x19, 0xcb, 0xb0, 0x4b,
+	0xdf, 0x43, 0x7b, 0x22, 0xc5, 0x09, 0x4f, 0xce, 0x95, 0x15, 0x1b, 0x9c, 0x8c, 0x5f, 0xb3, 0xac,
+	0x87, 0x82, 0x9a, 0xc1, 0xb1, 0x0d, 0xf5, 0xf2, 0xfd, 0x0e, 0xef, 0x5c, 0x68, 0x47, 0x16, 0x64,
+	0x92, 0x83, 0x90, 0x1f, 0x80, 0x13, 0xa6, 0xcb, 0x19, 0xdd, 0xea, 0x1f, 0x28, 0x05, 0xeb, 0xbf,
+	0xad, 0x1c, 0x96, 0x2c, 0xd4, 0x21, 0xe3, 0x12, 0xf3, 0xfe, 0x8c, 0xfe, 0xe3, 0x0b, 0xa6, 0xce,
+	0x27, 0x44, 0xbe, 0x6c, 0x27, 0x3b, 0xcc, 0xfe, 0x75, 0xb7, 0xa5, 0x43, 0xaf, 0xdf, 0x3c, 0xc7,
+	0xbd, 0xee, 0x37, 0x4f, 0x3c, 0x6b, 0x63, 0x3f, 0xf6, 0xec, 0xd7, 0xf2, 0xf9, 0x3e, 0x00, 0x00,
+	0xff, 0xff, 0xa7, 0xea, 0x3c, 0x30, 0x44, 0x03, 0x00, 0x00,
 }
 
 // Reference imports to suppress errors if they are not otherwise used.
 var _ context.Context
-var _ grpc.ClientConn
+var _ grpc.ClientConnInterface
 
 // This is a compile-time assertion to ensure that this generated file
 // is compatible with the grpc package it is being compiled against.
-const _ = grpc.SupportPackageIsVersion4
+const _ = grpc.SupportPackageIsVersion6
 
 // RemoteControlClient is the client API for RemoteControl service.
 //
@@ -349,15 +347,13 @@ type RemoteControlClient interface {
 	Biases(ctx context.Context, in *None, opts ...grpc.CallOption) (RemoteControl_BiasesClient, error)
 	Weights(ctx context.Context, in *None, opts ...grpc.CallOption) (RemoteControl_WeightsClient, error)
 	State(ctx context.Context, in *None, opts ...grpc.CallOption) (RemoteControl_StateClient, error)
-	Predict(ctx context.Context, in *Matrix, opts ...grpc.CallOption) (*Matrix, error)
-	DummyStart(ctx context.Context, in *None, opts ...grpc.CallOption) (*None, error)
 }
 
 type remoteControlClient struct {
-	cc *grpc.ClientConn
+	cc grpc.ClientConnInterface
 }
 
-func NewRemoteControlClient(cc *grpc.ClientConn) RemoteControlClient {
+func NewRemoteControlClient(cc grpc.ClientConnInterface) RemoteControlClient {
 	return &remoteControlClient{cc}
 }
 
@@ -498,24 +494,6 @@ func (x *remoteControlStateClient) Recv() (*NetworkState, error) {
 	return m, nil
 }
 
-func (c *remoteControlClient) Predict(ctx context.Context, in *Matrix, opts ...grpc.CallOption) (*Matrix, error) {
-	out := new(Matrix)
-	err := c.cc.Invoke(ctx, "/remotecontrol.RemoteControl/predict", in, out, opts...)
-	if err != nil {
-		return nil, err
-	}
-	return out, nil
-}
-
-func (c *remoteControlClient) DummyStart(ctx context.Context, in *None, opts ...grpc.CallOption) (*None, error) {
-	out := new(None)
-	err := c.cc.Invoke(ctx, "/remotecontrol.RemoteControl/dummyStart", in, out, opts...)
-	if err != nil {
-		return nil, err
-	}
-	return out, nil
-}
-
 // RemoteControlServer is the server API for RemoteControl service.
 type RemoteControlServer interface {
 	GetConfiguration(context.Context, *None) (*Configuration, error)
@@ -523,8 +501,6 @@ type RemoteControlServer interface {
 	Biases(*None, RemoteControl_BiasesServer) error
 	Weights(*None, RemoteControl_WeightsServer) error
 	State(*None, RemoteControl_StateServer) error
-	Predict(context.Context, *Matrix) (*Matrix, error)
-	DummyStart(context.Context, *None) (*None, error)
 }
 
 // UnimplementedRemoteControlServer can be embedded to have forward compatible implementations.
@@ -546,12 +522,6 @@ func (*UnimplementedRemoteControlServer) Weights(req *None, srv RemoteControl_We
 func (*UnimplementedRemoteControlServer) State(req *None, srv RemoteControl_StateServer) error {
 	return status.Errorf(codes.Unimplemented, "method State not implemented")
 }
-func (*UnimplementedRemoteControlServer) Predict(ctx context.Context, req *Matrix) (*Matrix, error) {
-	return nil, status.Errorf(codes.Unimplemented, "method Predict not implemented")
-}
-func (*UnimplementedRemoteControlServer) DummyStart(ctx context.Context, req *None) (*None, error) {
-	return nil, status.Errorf(codes.Unimplemented, "method DummyStart not implemented")
-}
 
 func RegisterRemoteControlServer(s *grpc.Server, srv RemoteControlServer) {
 	s.RegisterService(&_RemoteControl_serviceDesc, srv)
@@ -659,42 +629,6 @@ func (x *remoteControlStateServer) Send(m *NetworkState) error {
 	return x.ServerStream.SendMsg(m)
 }
 
-func _RemoteControl_Predict_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
-	in := new(Matrix)
-	if err := dec(in); err != nil {
-		return nil, err
-	}
-	if interceptor == nil {
-		return srv.(RemoteControlServer).Predict(ctx, in)
-	}
-	info := &grpc.UnaryServerInfo{
-		Server:     srv,
-		FullMethod: "/remotecontrol.RemoteControl/Predict",
-	}
-	handler := func(ctx context.Context, req interface{}) (interface{}, error) {
-		return srv.(RemoteControlServer).Predict(ctx, req.(*Matrix))
-	}
-	return interceptor(ctx, in, info, handler)
-}
-
-func _RemoteControl_DummyStart_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
-	in := new(None)
-	if err := dec(in); err != nil {
-		return nil, err
-	}
-	if interceptor == nil {
-		return srv.(RemoteControlServer).DummyStart(ctx, in)
-	}
-	info := &grpc.UnaryServerInfo{
-		Server:     srv,
-		FullMethod: "/remotecontrol.RemoteControl/DummyStart",
-	}
-	handler := func(ctx context.Context, req interface{}) (interface{}, error) {
-		return srv.(RemoteControlServer).DummyStart(ctx, req.(*None))
-	}
-	return interceptor(ctx, in, info, handler)
-}
-
 var _RemoteControl_serviceDesc = grpc.ServiceDesc{
 	ServiceName: "remotecontrol.RemoteControl",
 	HandlerType: (*RemoteControlServer)(nil),
@@ -703,14 +637,6 @@ var _RemoteControl_serviceDesc = grpc.ServiceDesc{
 			MethodName: "getConfiguration",
 			Handler:    _RemoteControl_GetConfiguration_Handler,
 		},
-		{
-			MethodName: "predict",
-			Handler:    _RemoteControl_Predict_Handler,
-		},
-		{
-			MethodName: "dummyStart",
-			Handler:    _RemoteControl_DummyStart_Handler,
-		},
 	},
 	Streams: []grpc.StreamDesc{
 		{

+ 0 - 2
remotecontrol/remotecontrol.proto

@@ -66,6 +66,4 @@ service RemoteControl {
     rpc Biases(None) returns (stream LayerMatrix) {}
     rpc Weights(None) returns (stream LayerMatrix) {}
     rpc State(None) returns (stream NetworkState) {}
-    rpc predict(Matrix) returns (Matrix) {}
-    rpc dummyStart(None) returns (None) {}
 }