libpostal-sys 0.1.1

Low-level wrappers for libpostal address normalization (with locks to support thread-safe initialization)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef LOGISTIC_H
#define LOGISTIC_H

#include <stdlib.h>
#include <stdint.h>

#include "matrix.h"

double sigmoid(double x);
void sigmoid_vector(double *x, size_t n);
void softmax_vector(double *x, size_t n);
void softmax_matrix(double_matrix_t *matrix);

#endif