This website works better with JavaScript
Etusivu
Tutki
Apua
Rekisteröidy
Kirjaudu sisään
AIForce
/
petals
peilaus alkaen
https://github.com/bigscience-workshop/petals.git
Tarkkaile
5
Äänestä
0
Fork
0
Tiedostot
Ongelmat
0
Wiki
Selaa lähdekoodia
Move `petals` => `src/petals`
Aleksandr Borzunov
2 vuotta sitten
vanhempi
ac22efb8b6
commit
bb71bdfa65
66 muutettua tiedostoa
jossa
0 lisäystä
ja
0 poistoa
Jaettu näkymä
Näytä diff tilastot
0
0
src/petals/__init__.py
0
0
src/petals/bloom/__init__.py
0
0
src/petals/bloom/block.py
0
0
src/petals/bloom/from_pretrained.py
0
0
src/petals/bloom/model.py
0
0
src/petals/bloom/ops.py
0
0
src/petals/client/__init__.py
0
0
src/petals/client/inference_session.py
0
0
src/petals/client/remote_forward_backward.py
0
0
src/petals/client/remote_generation.py
0
0
src/petals/client/remote_model.py
0
0
src/petals/client/remote_sequential.py
0
0
src/petals/client/sequence_manager.py
0
0
src/petals/client/sequential_autograd.py
0
0
src/petals/client/spending_policy.py
0
0
src/petals/constants.py
0
0
src/petals/data_structures.py
0
0
src/petals/dht_utils.py
0
0
src/petals/server/__init__.py
0
0
src/petals/server/backend.py
0
0
src/petals/server/block_selection.py
0
0
src/petals/server/cache.py
0
0
src/petals/server/handler.py
0
0
src/petals/server/runtime.py
0
0
src/petals/server/server.py
0
0
src/petals/server/task_pool.py
0
0
src/petals/server/task_prioritizer.py
0
0
src/petals/server/throughput.py
0
0
src/petals/src/__init__.py
0
0
src/petals/src/bloom/__init__.py
0
0
src/petals/src/bloom/block.py
0
0
src/petals/src/bloom/from_pretrained.py
0
0
src/petals/src/bloom/model.py
0
0
src/petals/src/bloom/ops.py
0
0
src/petals/src/client/__init__.py
0
0
src/petals/src/client/inference_session.py
0
0
src/petals/src/client/remote_forward_backward.py
0
0
src/petals/src/client/remote_generation.py
0
0
src/petals/src/client/remote_model.py
0
0
src/petals/src/client/remote_sequential.py
0
0
src/petals/src/client/sequence_manager.py
0
0
src/petals/src/client/sequential_autograd.py
0
0
src/petals/src/client/spending_policy.py
0
0
src/petals/src/constants.py
0
0
src/petals/src/data_structures.py
0
0
src/petals/src/dht_utils.py
0
0
src/petals/src/server/__init__.py
0
0
src/petals/src/server/backend.py
0
0
src/petals/src/server/block_selection.py
0
0
src/petals/src/server/cache.py
0
0
src/petals/src/server/handler.py
0
0
src/petals/src/server/runtime.py
0
0
src/petals/src/server/server.py
0
0
src/petals/src/server/task_pool.py
0
0
src/petals/src/server/task_prioritizer.py
0
0
src/petals/src/server/throughput.py
0
0
src/petals/src/utils/__init__.py
0
0
src/petals/src/utils/convert_8bit.py
0
0
src/petals/src/utils/generation_algorithms.py
0
0
src/petals/src/utils/generation_constraints.py
0
0
src/petals/src/utils/misc.py
0
0
src/petals/utils/__init__.py
0
0
src/petals/utils/convert_8bit.py
0
0
src/petals/utils/generation_algorithms.py
0
0
src/petals/utils/generation_constraints.py
0
0
src/petals/utils/misc.py
+ 0
- 0
petals/__init__.py → src/petals/__init__.py
Näytä tiedosto
+ 0
- 0
petals/bloom/__init__.py → src/petals/bloom/__init__.py
Näytä tiedosto
+ 0
- 0
petals/bloom/block.py → src/petals/bloom/block.py
Näytä tiedosto
+ 0
- 0
petals/bloom/from_pretrained.py → src/petals/bloom/from_pretrained.py
Näytä tiedosto
+ 0
- 0
petals/bloom/model.py → src/petals/bloom/model.py
Näytä tiedosto
+ 0
- 0
petals/bloom/ops.py → src/petals/bloom/ops.py
Näytä tiedosto
+ 0
- 0
petals/client/__init__.py → src/petals/client/__init__.py
Näytä tiedosto
+ 0
- 0
petals/client/inference_session.py → src/petals/client/inference_session.py
Näytä tiedosto
+ 0
- 0
petals/client/remote_forward_backward.py → src/petals/client/remote_forward_backward.py
Näytä tiedosto
+ 0
- 0
petals/client/remote_generation.py → src/petals/client/remote_generation.py
Näytä tiedosto
+ 0
- 0
petals/client/remote_model.py → src/petals/client/remote_model.py
Näytä tiedosto
+ 0
- 0
petals/client/remote_sequential.py → src/petals/client/remote_sequential.py
Näytä tiedosto
+ 0
- 0
petals/client/sequence_manager.py → src/petals/client/sequence_manager.py
Näytä tiedosto
+ 0
- 0
petals/client/sequential_autograd.py → src/petals/client/sequential_autograd.py
Näytä tiedosto
+ 0
- 0
petals/client/spending_policy.py → src/petals/client/spending_policy.py
Näytä tiedosto
+ 0
- 0
petals/constants.py → src/petals/constants.py
Näytä tiedosto
+ 0
- 0
petals/data_structures.py → src/petals/data_structures.py
Näytä tiedosto
+ 0
- 0
petals/dht_utils.py → src/petals/dht_utils.py
Näytä tiedosto
+ 0
- 0
petals/server/__init__.py → src/petals/server/__init__.py
Näytä tiedosto
+ 0
- 0
petals/server/backend.py → src/petals/server/backend.py
Näytä tiedosto
+ 0
- 0
petals/server/block_selection.py → src/petals/server/block_selection.py
Näytä tiedosto
+ 0
- 0
petals/server/cache.py → src/petals/server/cache.py
Näytä tiedosto
+ 0
- 0
petals/server/handler.py → src/petals/server/handler.py
Näytä tiedosto
+ 0
- 0
petals/server/runtime.py → src/petals/server/runtime.py
Näytä tiedosto
+ 0
- 0
petals/server/server.py → src/petals/server/server.py
Näytä tiedosto
+ 0
- 0
petals/server/task_pool.py → src/petals/server/task_pool.py
Näytä tiedosto
+ 0
- 0
petals/server/task_prioritizer.py → src/petals/server/task_prioritizer.py
Näytä tiedosto
+ 0
- 0
petals/server/throughput.py → src/petals/server/throughput.py
Näytä tiedosto
+ 0
- 0
petals/src/__init__.py → src/petals/src/__init__.py
Näytä tiedosto
+ 0
- 0
petals/src/bloom/__init__.py → src/petals/src/bloom/__init__.py
Näytä tiedosto
+ 0
- 0
petals/src/bloom/block.py → src/petals/src/bloom/block.py
Näytä tiedosto
+ 0
- 0
petals/src/bloom/from_pretrained.py → src/petals/src/bloom/from_pretrained.py
Näytä tiedosto
+ 0
- 0
petals/src/bloom/model.py → src/petals/src/bloom/model.py
Näytä tiedosto
+ 0
- 0
petals/src/bloom/ops.py → src/petals/src/bloom/ops.py
Näytä tiedosto
+ 0
- 0
petals/src/client/__init__.py → src/petals/src/client/__init__.py
Näytä tiedosto
+ 0
- 0
petals/src/client/inference_session.py → src/petals/src/client/inference_session.py
Näytä tiedosto
+ 0
- 0
petals/src/client/remote_forward_backward.py → src/petals/src/client/remote_forward_backward.py
Näytä tiedosto
+ 0
- 0
petals/src/client/remote_generation.py → src/petals/src/client/remote_generation.py
Näytä tiedosto
+ 0
- 0
petals/src/client/remote_model.py → src/petals/src/client/remote_model.py
Näytä tiedosto
+ 0
- 0
petals/src/client/remote_sequential.py → src/petals/src/client/remote_sequential.py
Näytä tiedosto
+ 0
- 0
petals/src/client/sequence_manager.py → src/petals/src/client/sequence_manager.py
Näytä tiedosto
+ 0
- 0
petals/src/client/sequential_autograd.py → src/petals/src/client/sequential_autograd.py
Näytä tiedosto
+ 0
- 0
petals/src/client/spending_policy.py → src/petals/src/client/spending_policy.py
Näytä tiedosto
+ 0
- 0
petals/src/constants.py → src/petals/src/constants.py
Näytä tiedosto
+ 0
- 0
petals/src/data_structures.py → src/petals/src/data_structures.py
Näytä tiedosto
+ 0
- 0
petals/src/dht_utils.py → src/petals/src/dht_utils.py
Näytä tiedosto
+ 0
- 0
petals/src/server/__init__.py → src/petals/src/server/__init__.py
Näytä tiedosto
+ 0
- 0
petals/src/server/backend.py → src/petals/src/server/backend.py
Näytä tiedosto
+ 0
- 0
petals/src/server/block_selection.py → src/petals/src/server/block_selection.py
Näytä tiedosto
+ 0
- 0
petals/src/server/cache.py → src/petals/src/server/cache.py
Näytä tiedosto
+ 0
- 0
petals/src/server/handler.py → src/petals/src/server/handler.py
Näytä tiedosto
+ 0
- 0
petals/src/server/runtime.py → src/petals/src/server/runtime.py
Näytä tiedosto
+ 0
- 0
petals/src/server/server.py → src/petals/src/server/server.py
Näytä tiedosto
+ 0
- 0
petals/src/server/task_pool.py → src/petals/src/server/task_pool.py
Näytä tiedosto
+ 0
- 0
petals/src/server/task_prioritizer.py → src/petals/src/server/task_prioritizer.py
Näytä tiedosto
+ 0
- 0
petals/src/server/throughput.py → src/petals/src/server/throughput.py
Näytä tiedosto
+ 0
- 0
petals/src/utils/__init__.py → src/petals/src/utils/__init__.py
Näytä tiedosto
+ 0
- 0
petals/src/utils/convert_8bit.py → src/petals/src/utils/convert_8bit.py
Näytä tiedosto
+ 0
- 0
petals/src/utils/generation_algorithms.py → src/petals/src/utils/generation_algorithms.py
Näytä tiedosto
+ 0
- 0
petals/src/utils/generation_constraints.py → src/petals/src/utils/generation_constraints.py
Näytä tiedosto
+ 0
- 0
petals/src/utils/misc.py → src/petals/src/utils/misc.py
Näytä tiedosto
+ 0
- 0
petals/utils/__init__.py → src/petals/utils/__init__.py
Näytä tiedosto
+ 0
- 0
petals/utils/convert_8bit.py → src/petals/utils/convert_8bit.py
Näytä tiedosto
+ 0
- 0
petals/utils/generation_algorithms.py → src/petals/utils/generation_algorithms.py
Näytä tiedosto
+ 0
- 0
petals/utils/generation_constraints.py → src/petals/utils/generation_constraints.py
Näytä tiedosto
+ 0
- 0
petals/utils/misc.py → src/petals/utils/misc.py
Näytä tiedosto