You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/FAQ.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -119,7 +119,7 @@ Likewise, cached dataset files, such as those downloaded with `get_file()`, are
119
119
120
120
### How should I cite Synalinks?
121
121
122
-
Please cite Synalinks if it is Useful in your research. Here is the bibtex entry to use:
122
+
Please cite Synalinks if it is useful in your research. Here is the bibtex entry to use:
123
123
124
124
```bibtex
125
125
@misc{sallami2025synalinks,
@@ -134,15 +134,15 @@ Please cite Synalinks if it is Useful in your research. Here is the bibtex entry
134
134
135
135
### Do you provide help or support?
136
136
137
-
We provide consulting, development and technical support for companies that want to implement any neuro-symbolic systems. Using a framework is one thing, having a complete view of possible neuro-symbolic applications and the knowledge to create such complex systems is another. If you can't afford our services, you can find help in our public [Discord channel]().
137
+
We provide consulting, development and technical support for companies that want to implement any neuro-symbolic systems. Using a framework is one thing, having a complete view of possible neuro-symbolic applications and the knowledge to create such complex systems is another. If you can't afford our services, you can find help in our public [Discord channel](https://discord.gg/82nt97uXcM).
138
138
139
139
---
140
140
141
141
### What do "sample", "batch", and "epoch" mean?
142
142
143
143
-**Sample**: A sample is one element of a dataset. For example, one DataModel is one sample.
144
144
-**Batch**: A batch is a set of N samples. The samples in a batch are processed independently, in parallel. During training, a batch result in only one program update. A batch approximates the input distribution better than a single input. The larger the batch, the better the approximation; however a larger batch will take longer to process and still result in only one update.
145
-
-**Epochs**: A epochs is an arbitrarly cutoff, generally defined as "one pass over the entire dataset", used to separate training into distinct phases, which is Useful for logging and periodic evaluation. When using `validation_split` or `validation_data` with the `fit` method of Synalinks programs, evaluation will be run at the end of every epoch.
145
+
-**Epochs**: A epochs is an arbitrarly cutoff, generally defined as "one pass over the entire dataset", used to separate training into distinct phases, which is useful for logging and periodic evaluation. When using `validation_split` or `validation_data` with the `fit` method of Synalinks programs, evaluation will be run at the end of every epoch.
0 commit comments