Skip to content

Commit

Permalink
Update organization links
Browse files Browse the repository at this point in the history
  • Loading branch information
brandonwillard committed Sep 12, 2023
1 parent 0509846 commit 6dccd0d
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 22 deletions.
24 changes: 12 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,9 @@ Outlines 〰 has new releases and features coming every week! Make sure to ⭐ s

## Stay tuned for

- Context-Free Grammar guided generation ([#178](https://github.com/normal-computing/outlines/pull/178));
- Prompt-token alignment so you don't have to think about tokenization details ([#201](https://github.com/normal-computing/outlines/pull/201))
- An infilling DSL ([#182](https://github.com/normal-computing/outlines/issues/182))
- Context-Free Grammar guided generation ([#178](https://github.com/outlines-dev/outlines/pull/178));
- Prompt-token alignment so you don't have to think about tokenization details ([#201](https://github.com/outlines-dev/outlines/pull/201))
- An infilling DSL ([#182](https://github.com/outlines-dev/outlines/issues/182))

You can follow [@NormalComputing](https://twitter.com/NormalComputing), [@remilouf](https://twitter.com/remilouf) or [@BrandonTWillard](https://twitter.com/BrandonTWillard) for regular updates!

Expand Down Expand Up @@ -255,7 +255,7 @@ print(parsed)
# name='piggyback' age=23 armor=<Armor.chainmail: 'chainmail'> weapon=<Weapon.sword: 'sword'> strength=0
```

The method works with union types, optional types, arrays, nested schemas, etc. Some field constraints are [not supported yet](https://github.com/normal-computing/outlines/issues/215), but everything else should work.
The method works with union types, optional types, arrays, nested schemas, etc. Some field constraints are [not supported yet](https://github.com/outlines-dev/outlines/issues/215), but everything else should work.

## Prompting

Expand Down Expand Up @@ -386,7 +386,7 @@ removing boilerplate prompting code.

We currently only accept bug fixes and documentation contributions. If you have a
feature request, please start a new
[discussion](https://github.com/normal-computing/outlines/discussions). The
[discussion](https://github.com/outlines-dev/outlines/discussions). The
issue tracker is only intended for actionable items.

### How to contribute?
Expand All @@ -399,13 +399,13 @@ Do not hesitate to open a draft PR before your contribution is ready, especially

## Examples

- [Pick the odd one out](https://github.com/normal-computing/outlines/blob/main/examples/pick_odd_one_out.py)
- [Meta prompting](https://github.com/normal-computing/outlines/blob/main/examples/meta_prompting.py)
- [ReAct](https://github.com/normal-computing/outlines/blob/main/examples/react.py)
- [Generate code to solve math problems](https://github.com/normal-computing/outlines/blob/main/examples/math_generate_code.py)
- [BabyAGI](https://github.com/normal-computing/outlines/blob/main/examples/babyagi.py)
- [Uncertainty](https://github.com/normal-computing/outlines/blob/main/examples/sampling.ipynb)
- [Simulation-based inference](https://github.com/normal-computing/outlines/blob/main/examples/simulation_based_inference.ipynb)
- [Pick the odd one out](https://github.com/outlines-dev/outlines/blob/main/examples/pick_odd_one_out.py)
- [Meta prompting](https://github.com/outlines-dev/outlines/blob/main/examples/meta_prompting.py)
- [ReAct](https://github.com/outlines-dev/outlines/blob/main/examples/react.py)
- [Generate code to solve math problems](https://github.com/outlines-dev/outlines/blob/main/examples/math_generate_code.py)
- [BabyAGI](https://github.com/outlines-dev/outlines/blob/main/examples/babyagi.py)
- [Uncertainty](https://github.com/outlines-dev/outlines/blob/main/examples/sampling.ipynb)
- [Simulation-based inference](https://github.com/outlines-dev/outlines/blob/main/examples/simulation_based_inference.ipynb)


## Cite Outlines
Expand Down
4 changes: 2 additions & 2 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information

project = "Outlines"
copyright = "2023, Normal Computing"
copyright = "2023, Normal Computing, Outlines Developers"
author = "Remi Louf"
release = "0.1"

Expand All @@ -34,7 +34,7 @@
"icon_links": [
{
"name": "GitHub",
"url": "https://github.com/normal-computing/outlines", # required
"url": "https://github.com/outlines-dev/outlines", # required
"icon": "fa-brands fa-square-github",
"type": "fontawesome",
},
Expand Down
2 changes: 1 addition & 1 deletion docs/source/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ To use the integrations with Hugging Face's `transformers <https://huggingface.c

Hugging Face models are run locally. Outlines uses the `PyTorch <https://pytorch.org/>`_ versions of the models. Please refer to the `PyTorch documentation <https://pytorch.org/get-started/locally/>`_ for questions related to **GPU support**.

The integration is fairly basic for now, and if you have specific performance needs please `open an issue <https://github.com/normal-computing/outlines/issues>`_
The integration is fairly basic for now, and if you have specific performance needs please `open an issue <https://github.com/outlines-dev/outlines/issues>`_

Other integrations
------------------
Expand Down
2 changes: 1 addition & 1 deletion docs/source/reference/batching.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Outlines is sampling-first, and is built to generate several samples from the sa
samples=10
)
This will enable probabilistic applications down the line, stay tuned for more updates. In the meantime you can take a look at the `self-consistency example <https://github.com/normal-computing/outlines/blob/main/examples/self_consistency.py>`_.
This will enable probabilistic applications down the line, stay tuned for more updates. In the meantime you can take a look at the `self-consistency example <https://github.com/outlines-dev/outlines/blob/main/examples/self_consistency.py>`_.


Batching
Expand Down
4 changes: 2 additions & 2 deletions docs/source/reference/multimodel.rst
Original file line number Diff line number Diff line change
Expand Up @@ -39,15 +39,15 @@ Outlines can call models from Hugging Face's `transformers` and `diffusers` libr
.. note::

Outlines call the PyTorch version of models by default. The generation process also runs with defaults, please `open an issue <https://github.com/normal-computing/outlines/issues>`_ if you have more specific needs.
Outlines call the PyTorch version of models by default. The generation process also runs with defaults, please `open an issue <https://github.com/outlines-dev/outlines/issues>`_ if you have more specific needs.


Bring Your Own Model
--------------------

Outlines models are currently simple functions that return a text or an image given a prompt, you can thus easily use any model. We will soon provide a more comprehensive integration that handles controlled generation for any model.

If you think the model you are using could be useful to others, `open an issue <https://github.com/normal-computing/outlines/issues>`_ 😊
If you think the model you are using could be useful to others, `open an issue <https://github.com/outlines-dev/outlines/issues>`_ 😊


Coming soon
Expand Down
8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "outlines"
authors= [{name = "Normal Computing", email = "support@normalcomputing.com"}]
authors= [{name = "Outlines Developers"}]
description = "Probabilistic Generative Model Programming"
requires-python = ">=3.10"
keywords=[
Expand Down Expand Up @@ -54,9 +54,9 @@ test = [
]

[project.urls]
homepage = "https://github.com/normal-computing/outlines"
documentation = "https://normal-computing.github.io/outlines/"
repository = "https://github.com/normal-computing/outlines"
homepage = "https://github.com/outlines-dev/outlines"
documentation = "https://outlines-dev.github.io/outlines/"
repository = "https://github.com/outlines-dev/outlines"

[project.readme]
file="README.md"
Expand Down

0 comments on commit 6dccd0d

Please sign in to comment.