Victor Faramond

Results 5 comments of Victor Faramond

Try to add this line before loading your model: ``` import keras.backend as K K.set_learning_phase(1) ```

Solved by waiting for the promise returned by `Beacons.addIBeaconsDetection()`. My code: ```js async componentDidMount() { await Beacons.addIBeaconsDetection(); Beacons.startMonitoringForRegion(REGION); Beacons.startRangingBeaconsInRegion(REGION); this.beaconsDidRangeEvent = Beacons.BeaconsEventEmitter.addListener( 'beaconsDidRange', data => this.processBeacons(data.beacons), ); this.regionDidEnterEvent = Beacons.BeaconsEventEmitter.addListener(...

See https://github.com/MacKentoch/react-native-beacons-manager/blob/master/examples/BeaconsDemo/index.android.js for an example working on Android

You can pass `apollo-server` options to the `vesper` Express middleware directly if you want to enable tracing and cache-control: ``` expressApp.use( '/graphql', bodyParser.json(), vesper(schema, { cacheControl: true, tracing: true, }),...

I'm using GraphQL interfaces along with TypeORM single table inheritance with Vesper. You just need to provide the `resolveType` for the GraphQL interface, like this in your case: ``` const...